From 0cd58c235cd1e7ae278e1e7e4b30322855bc9906 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Wed, 22 Jul 2026 13:38:22 -0700 Subject: [PATCH 01/16] revert 790 --- scripts/GenerateMarkDown.ps1 | 177 +++++++---------------------------- 1 file changed, 33 insertions(+), 144 deletions(-) diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index 52498f065e01d..d7fd5d244a5ea 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -13,36 +13,6 @@ function Get-GraphMapping { $graphMapping.Add("beta", "graph-powershell-beta") return $graphMapping } - -function Get-NormalizedContent { - param ( - [ValidateNotNullOrEmpty()] - [string] $FilePath - ) - $content = Get-Content $FilePath -Raw - # Normalize line endings to LF and trim trailing whitespace - $content = $content -replace "`r`n", "`n" - $content = $content.TrimEnd() - # Strip ms.date line so date-only changes are ignored during comparison - $content = $content -replace '(?m)^ms\.date: .+$', '' - return $content -} - -function Get-DeterministicGuid { - param ( - [ValidateNotNullOrEmpty()] - [string] $InputString - ) - $bytes = [System.Text.Encoding]::UTF8.GetBytes($InputString) - $sha256 = [System.Security.Cryptography.SHA256]::Create() - try { - $hash = $sha256.ComputeHash($bytes) - return [guid]::new([byte[]]$hash[0..15]).ToString() - } finally { - $sha256.Dispose() - } -} - function Set-Help { param ( [ValidateNotNullOrEmpty()] @@ -86,11 +56,10 @@ function Start-GraphHelp { $ModulePrefix = "Microsoft.Graph" $AuthPath = "$ModulePrefix.Authentication" $AuthDestination = Join-Path $WorkLoadDocsPath "graph-powershell-1.0" $AuthPath + Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } Import-Module Microsoft.Graph.Authentication -Global $GraphMapping = Get-GraphMapping - $TempAuthDir = Join-Path ([System.IO.Path]::GetTempPath()) "GraphDocsTempAuth_$([guid]::NewGuid().ToString('N'))" - New-Item -Path $TempAuthDir -ItemType Directory -Force | Out-Null $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ $profilePath = "graph-powershell-1.0" @@ -98,34 +67,10 @@ function Start-GraphHelp { $profilePath = "graph-powershell-beta" } - # Generate all auth module docs to temp directory using module-level generation - Set-Help -ModuleDocsPath $TempAuthDir -Command "Connect-MgGraph" -Module "Microsoft.Graph.Authentication" - - # Compare and copy all generated auth files - $TempAuthModuleDir = Join-Path $TempAuthDir $AuthPath - if (Test-Path $TempAuthModuleDir) { - if (-not (Test-Path $AuthDestination)) { - New-Item -Path $AuthDestination -ItemType Directory -Force | Out-Null - } - Get-ChildItem -Path $TempAuthModuleDir -Filter "*.md" -File | ForEach-Object { - $tempFile = $_.FullName - $existingFile = Join-Path $AuthDestination $_.Name - if (Test-Path $existingFile) { - $existingContent = Get-NormalizedContent -FilePath $existingFile - $newContent = Get-NormalizedContent -FilePath $tempFile - if ($existingContent -ne $newContent) { - Copy-Item -Path $tempFile -Destination $existingFile -Force - Write-Host "Updated auth doc: $($_.BaseName)" - } - } else { - Copy-Item -Path $tempFile -Destination $existingFile -Force - Write-Host "Added auth doc: $($_.BaseName)" - } - } - } + $AuthenticationDocsPath = Join-Path $PSScriptRoot "..\microsoftgraph\graph-powershell-1.0" + Set-Help -ModuleDocsPath $AuthenticationDocsPath -Command "Connect-MgGraph" -Module "Microsoft.Graph.Authentication" Get-FolderByProfile -GraphProfile $graphProfile -GraphProfilePath $profilePath -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } - Remove-Item -Path $TempAuthDir -Recurse -Force -ErrorAction SilentlyContinue git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . @@ -144,11 +89,7 @@ function Get-FolderByProfile { $ModulesToGenerate = @() ) $CommandMetadataContent = Get-Content $CmdletMetadataPath | ConvertFrom-Json - - # Create a single temp directory for this profile's generation - $TempOutputDir = Join-Path ([System.IO.Path]::GetTempPath()) "GraphDocsTemp_$([guid]::NewGuid().ToString('N'))" - New-Item -Path $TempOutputDir -ItemType Directory -Force | Out-Null - + $ModulesToGenerate | ForEach-Object { $ModuleName = $_ Write-Host $ModuleName @@ -163,104 +104,52 @@ function Get-FolderByProfile { if (-not(Test-Path $Destination)) { New-Item -Path $Destination -ItemType Directory } - + + Get-ChildItem -Path $Destination * -File -Recurse | foreach { $_.Delete() } $CmdletCount = 0 - $MetadataCommands = @{} - - # Generate table of contents for each module using a deterministic GUID + # Generate table of contents for each module $TocFileName = "$Path.md" - $ModuleGuid = Get-DeterministicGuid -InputString $Path + $ModuleGuid = [guid]::NewGuid().ToString() $LinkProfile = $GraphProfile.Replace("v", "") $LinkModuleName = $Path.ToLower() $HelpVersion = "1.0.0.0" $HelpLocale = "en-US" - $DownloadLink = "https://learn.microsoft.com/en-us/powershell/module/$LinkModuleName/?view=graph-powershell-$LinkProfile" - - # Build TOC content in memory to compare before writing - $TocContent = @() - $TocContent += "---" - $TocContent += "Module Name: $Path" - $TocContent += "Module Guid: $ModuleGuid" - $TocContent += "Download Help Link: $DownloadLink" - $TocContent += "Help Version: $HelpVersion" - $TocContent += "Locale: $HelpLocale" - $TocContent += "---" - $TocContent += "" - $TocContent += "# $Path Module" - $TocContent += "## Description" - $TocContent += "Microsoft Graph PowerShell Cmdlets" - $TocContent += "" - $TocContent += "## $Path Cmdlets" - + $DownloadLink = "https://learn.microsoft.com/en-us/powershell/module/$LinkModuleName/?view=graph-powershell-$LinkProfile" + New-Item -Path $Destination -Name $TocFileName -ItemType File -Force + Add-Content -Path $Destination\$TocFileName -Value "---" + Add-Content -Path $Destination\$TocFileName -Value "Module Name: $Path" + Add-Content -Path $Destination\$TocFileName -Value "Module Guid: $ModuleGuid" + Add-Content -Path $Destination\$TocFileName -Value "Download Help Link: $DownloadLink" + Add-Content -Path $Destination\$TocFileName -Value "Help Version: $HelpVersion" + Add-Content -Path $Destination\$TocFileName -Value "Locale: $HelpLocale" + Add-Content -Path $Destination\$TocFileName -Value "---" + Add-Content -Path $Destination\$TocFileName -Value "" + Add-Content -Path $Destination\$TocFileName -Value "# $Path Module" + Add-Content -Path $Destination\$TocFileName -Value "## Description" + Add-Content -Path $Destination\$TocFileName -Value "Microsoft Graph PowerShell Cmdlets" + Add-Content -Path $Destination\$TocFileName -Value "" + Add-Content -Path $Destination\$TocFileName -Value "## $Path Cmdlets" $CommandMetadataContent | Where-Object { $_.Module -eq $ModName -and $_.ApiVersion -eq $GraphProfile } | ForEach-Object { $Command = $_.Command - $MetadataCommands[$Command] = $true $CmdletDocsPath = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path "$Command.md" - - # Generate to temp directory and compare with existing - if (Get-Command -Name $Command -ErrorAction SilentlyContinue) { - Set-Help -ModuleDocsPath $TempOutputDir -Command $Command -Module $Path - $TempFilePath = Join-Path $TempOutputDir $Path "$Command.md" - if (Test-Path $TempFilePath) { - if (Test-Path $CmdletDocsPath) { - $existingContent = Get-NormalizedContent -FilePath $CmdletDocsPath - $newContent = Get-NormalizedContent -FilePath $TempFilePath - if ($existingContent -ne $newContent) { - Copy-Item -Path $TempFilePath -Destination $CmdletDocsPath -Force - Write-Host "Updated: $Command" - } - } else { - Copy-Item -Path $TempFilePath -Destination $CmdletDocsPath -Force - Write-Host "Added: $Command" - } + if (-not(Test-Path $CmdletDocsPath)) { + if (Get-Command -Name $Command -ErrorAction SilentlyContinue) { + Set-Help -ModuleDocsPath $DocsDestination -Command $Command -Module $Path + } else { + Write-Warning "Cmdlet $Command is not available." } - } elseif (-not (Test-Path $CmdletDocsPath)) { - Write-Warning "Cmdlet $Command is not available." + } - - $TocContent += "### [$Command]($Command.md)" - $TocContent += "" + Add-Content -Path $Destination\$TocFileName -Value "### [$Command]($Command.md)" + Add-Content -Path $Destination\$TocFileName -Value "" $CmdletCount++ } - - if ($CmdletCount -eq 0) { + if($CmdletCount -eq 0){ Remove-Item -LiteralPath $Destination -Force -Recurse - } else { - # Only write TOC if content has changed - $TocFilePath = Join-Path $Destination $TocFileName - $newTocText = ($TocContent -join "`r`n") + "`r`n" - if (Test-Path $TocFilePath) { - $existingTocText = Get-Content $TocFilePath -Raw - # Normalize both to LF for comparison - $existingNormalized = $existingTocText -replace "`r`n", "`n" - $newNormalized = $newTocText -replace "`r`n", "`n" - if ($existingNormalized.TrimEnd() -ne $newNormalized.TrimEnd()) { - $newTocText | Out-File $TocFilePath -Encoding UTF8 -NoNewline - Write-Host "Updated TOC: $TocFileName" - } - } else { - $newTocText | Out-File $TocFilePath -Encoding UTF8 -NoNewline - Write-Host "Added TOC: $TocFileName" - } - - # Remove orphaned docs — files for commands no longer in metadata - Get-ChildItem -Path $Destination -Filter "*.md" -File | Where-Object { - $cmdName = $_.BaseName - -not $MetadataCommands.ContainsKey($cmdName) -and $_.Name -ne $TocFileName - } | ForEach-Object { - Write-Host "Removing orphaned doc: $($_.Name)" - Remove-Item $_.FullName -Force - } } - # Clean up temp module folder for this iteration - $TempModuleDir = Join-Path $TempOutputDir $Path - if (Test-Path $TempModuleDir) { - Remove-Item -Path $TempModuleDir -Recurse -Force -ErrorAction SilentlyContinue - } } - - Remove-Item -Path $TempOutputDir -Recurse -Force -ErrorAction SilentlyContinue + } # Install PlatyPS Install-Module -Name Microsoft.PowerShell.PlatyPS -Force From e6db7aca807cfefd0501cd38834b6fa3f6728b39 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Wed, 22 Jul 2026 13:43:12 -0700 Subject: [PATCH 02/16] remove stabilize msdate from pipeline --- azure-pipelines/powershell-docs.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/azure-pipelines/powershell-docs.yml b/azure-pipelines/powershell-docs.yml index c0304ad79ada1..603004858ab45 100644 --- a/azure-pipelines/powershell-docs.yml +++ b/azure-pipelines/powershell-docs.yml @@ -158,14 +158,6 @@ extends: targetType: 'filePath' pwsh: true filePath: scripts/CorrectRelatedLinks-AllFiles.ps1 - - task: PowerShell@2 - displayName: 'Stabilize ms.date values' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/StabilizeMsDate.ps1 - errorActionPreference: 'stop' - task: AzureKeyVault@2 displayName: "Azure Key Vault: Get GitHub App secrets" inputs: From 73a8c601468325d6a6906f1c357449e9cc7d5eba Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 24 Jul 2026 02:01:17 -0700 Subject: [PATCH 03/16] Prevent mass doc deletion when Graph modules fail to load Guard GenerateMarkDown.ps1 so a module's docs are only deleted when the module is available to regenerate them. Skip-and-preserve per workload module, and abort if Authentication is unavailable, avoiding refresh PRs that delete thousands of docs after a failed module install. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- scripts/GenerateMarkDown.ps1 | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index d7fd5d244a5ea..8c4b03f16ddf8 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -56,9 +56,15 @@ function Start-GraphHelp { $ModulePrefix = "Microsoft.Graph" $AuthPath = "$ModulePrefix.Authentication" $AuthDestination = Join-Path $WorkLoadDocsPath "graph-powershell-1.0" $AuthPath + + # Guard against catastrophic deletions: never remove existing docs unless the module + # is available to regenerate them. Authentication is required for every run, so abort + # if it failed to install rather than wiping committed documentation. + if (-not (Get-Module -Name Microsoft.Graph.Authentication -ListAvailable -ErrorAction SilentlyContinue)) { + throw "Microsoft.Graph.Authentication module is not available. Aborting generation to avoid deleting existing documentation." + } + Import-Module Microsoft.Graph.Authentication -Force -Global Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } - - Import-Module Microsoft.Graph.Authentication -Global $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ @@ -101,6 +107,16 @@ function Get-FolderByProfile { } $Destination = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path $DocsDestination = Join-Path $WorkLoadDocsPath $GraphProfilePath + + # Guard against catastrophic deletions: if the module failed to install/import, + # skip it entirely so its committed docs are preserved instead of being deleted + # and never regenerated (which is what produced the mass-deletion refresh PRs). + if (-not (Get-Module -Name $Path -ListAvailable -ErrorAction SilentlyContinue)) { + Write-Warning "Module $Path is not available; skipping to preserve existing documentation." + return + } + Import-Module $Path -Force -Global -ErrorAction SilentlyContinue + if (-not(Test-Path $Destination)) { New-Item -Path $Destination -ItemType Directory } From 07657def287d803ad342c41d6f0061804d49781b Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 24 Jul 2026 02:09:19 -0700 Subject: [PATCH 04/16] Normalize generated-commit author to Graph DevX Tooling bot EscapeDisallowedHtmlTags.ps1 and RemoveInvalidFullStops.ps1 hardcoded a personal git identity, so their stage commits in the weekly refresh PRs were attributed to an individual instead of the tooling bot. Align both with the other generation scripts. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- scripts/EscapeDisallowedHtmlTags.ps1 | 4 ++-- scripts/RemoveInvalidFullStops.ps1 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/EscapeDisallowedHtmlTags.ps1 b/scripts/EscapeDisallowedHtmlTags.ps1 index 7f2d4079ff9da..597d7a5633f81 100644 --- a/scripts/EscapeDisallowedHtmlTags.ps1 +++ b/scripts/EscapeDisallowedHtmlTags.ps1 @@ -23,8 +23,8 @@ function EscapeDisallowedHtmlTags { Get-FilesByProfile -GraphProfile $graphProfile -GraphProfilePath $GraphMapping[$graphProfile] -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } - git config --global user.email "timwamalwa@gmail.com" - git config --global user.name "Timothy Wamalwa" + git config --global user.email "GraphTooling@service.microsoft.com" + git config --global user.name "Microsoft Graph DevX Tooling" git add . git commit -m "Escaped disallowed html tags" } diff --git a/scripts/RemoveInvalidFullStops.ps1 b/scripts/RemoveInvalidFullStops.ps1 index 37be47e7c73df..db34789d58025 100644 --- a/scripts/RemoveInvalidFullStops.ps1 +++ b/scripts/RemoveInvalidFullStops.ps1 @@ -23,8 +23,8 @@ function Remove-InvalidFullStops { Get-FilesByProfile -GraphProfile $graphProfile -GraphProfilePath $GraphMapping[$graphProfile] -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } - git config --global user.email "timwamalwa@gmail.com" - git config --global user.name "Timothy Wamalwa" + git config --global user.email "GraphTooling@service.microsoft.com" + git config --global user.name "Microsoft Graph DevX Tooling" git add . git commit -m "Removed invalid full stops from the beginning of lines" } From 29c4a42a5ee11cabad11dfec978623090f64c623 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Tue, 28 Jul 2026 11:36:40 -0700 Subject: [PATCH 05/16] Fix duplicated doc enrichment blocks and BOM churn in generation - UpdateLinks.ps1: only insert the beta/v1 '[!NOTE]' link when it is not already present, so weekly runs stop stacking duplicate note blocks. - GeneratePermissionsTable.ps1: skip files that already contain a '**Permissions**' table instead of prepending another copy each run. - GenerateMarkDown.ps1: write PlatyPS output as UTF-8 without BOM so every regenerated file no longer diffs on a leading BOM. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- scripts/GenerateMarkDown.ps1 | 4 ++-- scripts/GeneratePermissionsTable.ps1 | 7 ++++++- scripts/UpdateLinks.ps1 | 6 +++++- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index 8c4b03f16ddf8..3aaae05dc9f8d 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -27,7 +27,7 @@ function Set-Help { Command = (Get-Command $Command) OutputFolder = $ModuleDocsPath Force = $true - Encoding = [System.Text.Encoding]::UTF8 + Encoding = [System.Text.UTF8Encoding]::new($false) } if ($Module -eq "Microsoft.Graph.Authentication") { @@ -35,7 +35,7 @@ function Set-Help { Module = (Get-Module $Module) OutputFolder = $ModuleDocsPath WithModulePage = $true - Encoding = [System.Text.Encoding]::UTF8 + Encoding = [System.Text.UTF8Encoding]::new($false) } Import-Module $Module -Force -Global } diff --git a/scripts/GeneratePermissionsTable.ps1 b/scripts/GeneratePermissionsTable.ps1 index aeca973f7f228..47e90ae3698f8 100644 --- a/scripts/GeneratePermissionsTable.ps1 +++ b/scripts/GeneratePermissionsTable.ps1 @@ -136,7 +136,12 @@ function New-ReferenceTable { "@; - if ((Get-Content -Raw -Path $File) -match '(## DESCRIPTION)[\s\S]*## EXAMPLES') { + if ((Get-Content -Raw -Path $File) -match '\*\*Permissions\*\*') { + # A permissions table has already been inserted on a previous run. + # Skip to avoid prepending a duplicate '**Permissions**' block. + Write-Host "Skipping $CommandName as it already has a permissions table"; + } + elseif ((Get-Content -Raw -Path $File) -match '(## DESCRIPTION)[\s\S]*## EXAMPLES') { $Link = "**Permissions**`r`n`n$markdownTable`r`n`n## EXAMPLES" (Get-Content $File) | Foreach-Object { $_ -replace '## EXAMPLES', $Link } | diff --git a/scripts/UpdateLinks.ps1 b/scripts/UpdateLinks.ps1 index f7edf3e93bcd6..fcc8d8e2253b2 100644 --- a/scripts/UpdateLinks.ps1 +++ b/scripts/UpdateLinks.ps1 @@ -175,7 +175,11 @@ function Add-Link { $Folder = $View.Split("=")[1] $ConfirmFile = Join-Path $WorkLoadDocsPath "$Folder" "$ModuleName" "$CommandRename.md" $ConfirmCommandAvailability = Find-MgGraphCommand -Command $CommandRename - if ($ConfirmCommandAvailability -and (Test-Path $ConfirmFile)) { + # Only insert the note if it isn't already present, otherwise every run + # prepends another copy of the same '[!NOTE]' block before '## SYNTAX'. + $NoteMarker = "$LinkTitle [$CommandRename]($BaseUrl/$FullModuleName$View)" + $AlreadyLinked = (Get-Content -Raw -Path $File) -match [regex]::Escape($NoteMarker) + if ($ConfirmCommandAvailability -and (Test-Path $ConfirmFile) -and -not $AlreadyLinked) { (Get-Content $File) | Foreach-Object { $_ -replace '## SYNTAX', $Link } | Out-File $File From a94085a9f3a84c441f3ed86dc5714407d8654618 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Tue, 28 Jul 2026 12:15:46 -0700 Subject: [PATCH 06/16] Force LF line endings for generated markdown docs Add '*.md text eol=lf' to .gitattributes so PlatyPS/transform scripts, which run on Windows and emit CRLF, no longer produce line-ending churn in the weekly refresh PRs. Index blobs are already LF, so this only pins the working-tree checkout and future writes to LF. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- .gitattributes | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitattributes b/.gitattributes index 9fb85ec49f011..ff067eed84e37 100644 --- a/.gitattributes +++ b/.gitattributes @@ -9,6 +9,10 @@ # Declare files that will always have CRLF line endings on checkout. *.sln text eol=crlf +# Reference docs are generated by PlatyPS/transform scripts on Windows. +# Force LF so regenerated markdown never churns the diff with CRLF endings. +*.md text eol=lf + # Denote all files that are truly binary and should not be modified. *.png binary *.jpg binary \ No newline at end of file From 19a3a1a450a7ffe97d24ef506837f842c15293e7 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Wed, 29 Jul 2026 11:57:43 -0700 Subject: [PATCH 07/16] Prevent mass doc deletion by overwriting in place and removing only orphans Bulk-deleting a module's docs before regenerating meant any transient import failure (installed but unimportable module, e.g. Authentication version conflict) wiped docs that were never regenerated, producing refresh PRs with thousands of missing files. Now: verify the module truly imports and exposes commands before processing (skip-and-preserve otherwise), overwrite each doc in place, and remove only genuine orphans whose command is no longer in the metadata. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- scripts/GenerateMarkDown.ps1 | 56 +++++++++++++++++++++++++----------- 1 file changed, 40 insertions(+), 16 deletions(-) diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index 3aaae05dc9f8d..0d5a062bef429 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -63,7 +63,7 @@ function Start-GraphHelp { if (-not (Get-Module -Name Microsoft.Graph.Authentication -ListAvailable -ErrorAction SilentlyContinue)) { throw "Microsoft.Graph.Authentication module is not available. Aborting generation to avoid deleting existing documentation." } - Import-Module Microsoft.Graph.Authentication -Force -Global + Import-Module Microsoft.Graph.Authentication -Force -Global -ErrorAction Stop Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { @@ -108,21 +108,37 @@ function Get-FolderByProfile { $Destination = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path $DocsDestination = Join-Path $WorkLoadDocsPath $GraphProfilePath - # Guard against catastrophic deletions: if the module failed to install/import, - # skip it entirely so its committed docs are preserved instead of being deleted + # Guard against catastrophic deletions. A module can be installed yet fail to + # import (e.g. an Authentication version conflict), and ListAvailable alone does + # not catch that. Verify the module actually imports AND exposes commands; if it + # does not, skip it so its committed docs are preserved instead of being wiped # and never regenerated (which is what produced the mass-deletion refresh PRs). - if (-not (Get-Module -Name $Path -ListAvailable -ErrorAction SilentlyContinue)) { - Write-Warning "Module $Path is not available; skipping to preserve existing documentation." + $ModuleUsable = $false + if (Get-Module -Name $Path -ListAvailable -ErrorAction SilentlyContinue) { + try { + Import-Module $Path -Force -Global -ErrorAction Stop + if (Get-Command -Module $Path -ErrorAction SilentlyContinue) { + $ModuleUsable = $true + } + } catch { + Write-Warning "Module $Path failed to import: $($_.Exception.Message)" + } + } + if (-not $ModuleUsable) { + Write-Warning "Module $Path is not usable; skipping to preserve existing documentation." return } - Import-Module $Path -Force -Global -ErrorAction SilentlyContinue if (-not(Test-Path $Destination)) { New-Item -Path $Destination -ItemType Directory } - - Get-ChildItem -Path $Destination * -File -Recurse | foreach { $_.Delete() } + + # NOTE: docs are intentionally NOT bulk-deleted here. Each doc is overwritten in + # place as it is regenerated, and only genuine orphans (commands no longer in the + # metadata) are removed afterwards. This guarantees that a transient generation + # failure can never wipe a module's documentation. $CmdletCount = 0 + $MetadataCommands = @{} # Generate table of contents for each module $TocFileName = "$Path.md" $ModuleGuid = [guid]::NewGuid().ToString() @@ -147,19 +163,27 @@ function Get-FolderByProfile { Add-Content -Path $Destination\$TocFileName -Value "## $Path Cmdlets" $CommandMetadataContent | Where-Object { $_.Module -eq $ModName -and $_.ApiVersion -eq $GraphProfile } | ForEach-Object { $Command = $_.Command - $CmdletDocsPath = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path "$Command.md" - if (-not(Test-Path $CmdletDocsPath)) { - if (Get-Command -Name $Command -ErrorAction SilentlyContinue) { - Set-Help -ModuleDocsPath $DocsDestination -Command $Command -Module $Path - } else { - Write-Warning "Cmdlet $Command is not available." - } - + $MetadataCommands[$Command] = $true + if (Get-Command -Name $Command -ErrorAction SilentlyContinue) { + Set-Help -ModuleDocsPath $DocsDestination -Command $Command -Module $Path + } else { + Write-Warning "Cmdlet $Command is not available." } Add-Content -Path $Destination\$TocFileName -Value "### [$Command]($Command.md)" Add-Content -Path $Destination\$TocFileName -Value "" $CmdletCount++ } + + # Remove only genuine orphans: docs whose command is no longer in the metadata. + # Docs for commands still in metadata are preserved even if this run failed to + # regenerate them, so a bad run cannot delete valid documentation. + Get-ChildItem -Path $Destination -Filter "*.md" -File | Where-Object { + $_.Name -ne $TocFileName -and -not $MetadataCommands.ContainsKey($_.BaseName) + } | ForEach-Object { + Write-Host "Removing orphaned doc: $($_.Name)" + Remove-Item $_.FullName -Force + } + if($CmdletCount -eq 0){ Remove-Item -LiteralPath $Destination -Force -Recurse } From 00db04466cdc97b8fcbf4298c23497504bb7fd81 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Thu, 30 Jul 2026 17:20:46 -0700 Subject: [PATCH 08/16] Refactor weekly docs pipeline into isolated per-module stages Each Graph workload module now generates in its own Azure DevOps stage per SDK profile (~86 independent stages), giving every module a fresh agent and a clean assembly-load context. This structurally eliminates the "assembly with same name is already loaded" collisions that produced mass-deletion / no-op refresh PRs. - GenerateMarkDown.ps1: add -GraphProfileFilter and -ModuleFilter scoping; in scoped runs do a complete delete + full regen of the single module, throw before any deletion on import failure (fail-safe), and emit a ModuleGenerated signal only on success. - 9 post-processing scripts: add matching profile/module scoping and empty-commit guards so each touches only the target module folder. - update-template.yml: parameterized install (InstallProfile/Module) that installs only Authentication + the single workload submodule for isolated runs; install failures warn instead of failing. - New common-templates/generate-module-docs-steps.yml: full single-module sequence (install -> generate -> post-process -> push -> PR). Generate step is continueOnError and every later step is gated on ModuleGenerated, so a failing module deletes nothing, opens no PR, and never fails the overall pipeline. - New common-templates/module-stages.yml: emits one dependsOn:[] stage per module. - powershell-docs.yml: invoke module-stages.yml for v1.0 (incl. Authentication) and beta; each stage opens its own pull request. ms.date changes every run (StabilizeMsDate is intentionally not run) for reviewable PRs. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- .../generate-module-docs-steps.yml | 219 ++++++++++++++++ .../common-templates/module-stages.yml | 50 ++++ azure-pipelines/powershell-docs.yml | 248 ++++++++---------- azure-pipelines/update-template.yml | 60 ++++- scripts/CorrectRelatedLinks-AllFiles.ps1 | 10 +- scripts/EscapeDisallowedHtmlTags.ps1 | 16 +- scripts/GenerateAliasedDocs.ps1 | 11 +- scripts/GenerateMarkDown.ps1 | 93 +++++-- scripts/GeneratePermissionsTable.ps1 | 15 +- scripts/MsSubserviceUpdate.ps1 | 7 +- scripts/RemoveBoilerPlateCode.ps1 | 34 ++- scripts/RemoveInvalidFullStops.ps1 | 16 +- .../RepairExamplesDescriptionsAndTitle.ps1 | 14 +- scripts/UpdateLinks.ps1 | 9 +- 14 files changed, 600 insertions(+), 202 deletions(-) create mode 100644 azure-pipelines/common-templates/generate-module-docs-steps.yml create mode 100644 azure-pipelines/common-templates/module-stages.yml diff --git a/azure-pipelines/common-templates/generate-module-docs-steps.yml b/azure-pipelines/common-templates/generate-module-docs-steps.yml new file mode 100644 index 0000000000000..290ee79651d59 --- /dev/null +++ b/azure-pipelines/common-templates/generate-module-docs-steps.yml @@ -0,0 +1,219 @@ +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. +# +# Reusable steps that generate and post-process documentation for a SINGLE module in a SINGLE +# SDK profile, then open a dedicated pull request for it. Designed to run inside an isolated +# per-module stage so an import/assembly conflict for one module can never affect another. +# +# Failure containment: the generate step runs with continueOnError, and every step after it is +# gated on the ModuleGenerated variable (set only when generation actually succeeds). If the +# module fails to import, nothing is deleted, no PR is opened, and the stage is marked +# partially-succeeded WITHOUT failing the overall pipeline or any other module's stage. + +parameters: + - name: Module + type: string + - name: GraphProfileFilter + type: string + - name: BranchPrefix + type: string + default: WeeklyDocs + - name: BaseBranch + type: string + default: main + +steps: + - template: ../update-template.yml + parameters: + InstallProfile: ${{ parameters.GraphProfileFilter }} + Module: ${{ parameters.Module }} + + - task: PowerShell@2 + name: ComputeBranch + displayName: 'Compute branch name' + inputs: + targetType: 'inline' + pwsh: true + script: | + git submodule update --init --recursive + $branch = "{0}-{1}-{2}_{3}" -f "${{ parameters.BranchPrefix }}", "${{ parameters.GraphProfileFilter }}", "${{ parameters.Module }}", (Get-Date -Format yyyyMMddHHmm) + Write-Host "Compute branch: $branch" + Write-Host "##vso[task.setvariable variable=ModuleBranch;isOutput=true]$branch" + + - task: Bash@3 + displayName: 'Create module refresh branch' + inputs: + targetType: inline + script: | + git status + git branch $(ComputeBranch.ModuleBranch) + git checkout $(ComputeBranch.ModuleBranch) + git status + + - task: PowerShell@2 + displayName: 'Create missing external docs folder' + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/CreateExternalDocsFolder.ps1 + + - task: PowerShell@2 + name: GenerateDocs + displayName: 'Generate markdown (${{ parameters.Module }} / ${{ parameters.GraphProfileFilter }})' + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/GenerateMarkDown.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Escape disallowed html tags' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/EscapeDisallowedHtmlTags.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Update metadata header' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/MsSubserviceUpdate.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Generate permissions table' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/GeneratePermissionsTable.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Update Links' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/UpdateLinks.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Repair Examples and Descriptions and Title' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/RepairExamplesDescriptionsAndTitle.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Remove boiler plate code' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/RemoveBoilerPlateCode.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Remove invalid fullstops' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/RemoveInvalidFullStops.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Generate missing docs for aliased cmdlets' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/GenerateAliasedDocs.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Correct related links section' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/CorrectRelatedLinks-AllFiles.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: AzureKeyVault@2 + displayName: "Azure Key Vault: Get GitHub App secrets" + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + inputs: + azureSubscription: "Federated AKV Managed Identity Connection" + KeyVaultName: akv-prod-eastus + SecretsFilter: "microsoft-graph-devx-bot-appid,microsoft-graph-devx-bot-privatekey" + + - task: PowerShell@2 + displayName: 'Push ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }}) branch' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + env: + GhAppId: $(microsoft-graph-devx-bot-appid) + GhAppKey: $(microsoft-graph-devx-bot-privatekey) + inputs: + targetType: inline + pwsh: true + script: | + git config --global user.email "GraphTooling@service.microsoft.com" + git config --global user.name "Microsoft Graph DevX Tooling" + git config --system core.longpaths true + # The microsoft-graph-devx-bot GitHub App must have contents:write on this repo. + $token = & "$(Build.SourcesDirectory)/scripts/Generate-Github-Token.ps1" -AppClientId $env:GhAppId -AppPrivateKeyContents $env:GhAppKey -Repository "MicrosoftDocs/microsoftgraph-docs-powershell" + if ([string]::IsNullOrWhiteSpace($token)) { throw "Failed to generate GitHub App installation token." } + # Mask the token so it is never surfaced in pipeline logs. + Write-Host "##vso[task.setsecret]$token" + git status + git add . + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Updating reference docs for ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }})" + } + else { + $global:LASTEXITCODE = 0 + } + git push --set-upstream "https://x-access-token:$token@github.com/MicrosoftDocs/microsoftgraph-docs-powershell.git" $(ComputeBranch.ModuleBranch) + git status + + - task: PowerShell@2 + displayName: 'Create PR for ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }})' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + env: + GhAppId: $(microsoft-graph-devx-bot-appid) + GhAppKey: $(microsoft-graph-devx-bot-privatekey) + inputs: + targetType: inline + pwsh: true + script: | + $BaseBranchName = "${{ parameters.BaseBranch }}" + $Head = "MicrosoftDocs:$(ComputeBranch.ModuleBranch)" + $Title = "Weekly Docs Refresh: ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }})" + $Body = "This pull request was automatically created by Azure Pipelines for the ``${{ parameters.Module }}`` module (``${{ parameters.GraphProfileFilter }}`` profile). **Important** Check for unexpected deletions or changes in this PR." + # The microsoft-graph-devx-bot GitHub App must have pull_requests:write on this repo. + $env:GITHUB_TOKEN = & "$(Build.SourcesDirectory)/scripts/Generate-Github-Token.ps1" -AppClientId $env:GhAppId -AppPrivateKeyContents $env:GhAppKey -Repository "MicrosoftDocs/microsoftgraph-docs-powershell" + if ([string]::IsNullOrWhiteSpace($env:GITHUB_TOKEN)) { throw "Failed to generate GitHub App installation token." } + # Mask the token so it is never surfaced in pipeline logs. + Write-Host "##vso[task.setsecret]$env:GITHUB_TOKEN" + gh pr create -t $Title -b $Body -B $BaseBranchName -H $Head diff --git a/azure-pipelines/common-templates/module-stages.yml b/azure-pipelines/common-templates/module-stages.yml new file mode 100644 index 0000000000000..f8a1f19f2cfc1 --- /dev/null +++ b/azure-pipelines/common-templates/module-stages.yml @@ -0,0 +1,50 @@ +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. +# +# Emits one fully independent stage per module for a given SDK profile. Each stage runs on its +# own agent (clean assembly-load context), generates + post-processes docs for that single +# module, and opens its own pull request. All stages have dependsOn: [] so they run in +# parallel and one module can never block or fail another. + +parameters: + - name: GraphProfileFilter + type: string + # Short label used in stage names (stage names cannot contain '.'), e.g. "v1" or "beta". + - name: ProfileLabel + type: string + - name: Modules + type: object + default: [] + - name: BranchPrefix + type: string + default: WeeklyDocs + - name: BaseBranch + type: string + default: main + - name: PipelineTimeout + type: number + default: 120 + +stages: + - ${{ each module in parameters.Modules }}: + - stage: "Gen_${{ parameters.ProfileLabel }}_${{ replace(module, '.', '_') }}" + displayName: '${{ parameters.GraphProfileFilter }} - ${{ module }}' + dependsOn: [] + jobs: + - job: GenerateModuleDocs + timeoutInMinutes: ${{ parameters.PipelineTimeout }} + templateContext: + outputs: + - output: pipelineArtifact + displayName: 'Publish missing external docs' + targetPath: missingexternaldocsurl + artifactName: "MissingExternalDocs-${{ parameters.ProfileLabel }}-${{ replace(module, '.', '-') }}" + publishLocation: 'Container' + condition: succeededOrFailed() + steps: + - template: generate-module-docs-steps.yml + parameters: + Module: ${{ module }} + GraphProfileFilter: ${{ parameters.GraphProfileFilter }} + BranchPrefix: ${{ parameters.BranchPrefix }} + BaseBranch: ${{ parameters.BaseBranch }} diff --git a/azure-pipelines/powershell-docs.yml b/azure-pipelines/powershell-docs.yml index 603004858ab45..b6dc5b22f8b9b 100644 --- a/azure-pipelines/powershell-docs.yml +++ b/azure-pipelines/powershell-docs.yml @@ -47,148 +47,106 @@ extends: customBuildTags: - ES365AIMigrationTooling stages: - - stage: stage - jobs: - - job: PowerShellDocsUpdate - timeoutInMinutes: ${{ parameters.PipelineTimeout }} - templateContext: - outputs: - - output: pipelineArtifact - displayName: 'Publish Examples to be reviewed as artifact' - targetPath: missingexternaldocsurl - artifactName: 'MissingExternalDocs' - publishLocation: 'Container' - steps: - - template: azure-pipelines/update-template.yml@self - - task : PowerShell@2 - name: "ComputeBranch" - displayName: 'Compute Branch Name' - inputs: - targetType: 'inline' - script: | - git submodule update --init --recursive - $branch = "{0}_{1}" -f "WeeklyReferenceDocsUpdate", (Get-Date -Format yyyyMMddHHmm) - Write-Host "Compute branch: $branch" - Write-Host "##vso[task.setvariable variable=WeeklyReferenceDocsBranch;isOutput=true]$branch" - - task: Bash@3 - displayName: "Create weekly refresh branch" - inputs: - targetType: inline - script: | - git status - git branch $(ComputeBranch.WeeklyReferenceDocsBranch) - git checkout $(ComputeBranch.WeeklyReferenceDocsBranch) - git status - - task: PowerShell@2 - displayName: 'Create missing external docs folder' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/CreateExternalDocsFolder.ps1 - - - task: PowerShell@2 - displayName: 'Generate markdown files from PowerShell help files' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/GenerateMarkDown.ps1 - - task: PowerShell@2 - displayName: 'Escape disallowed html tags' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/EscapeDisallowedHtmlTags.ps1 - - task: PowerShell@2 - displayName: 'Update metadata header' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/MsSubserviceUpdate.ps1 - - task: PowerShell@2 - displayName: 'Generate permissions table' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/GeneratePermissionsTable.ps1 - - task: PowerShell@2 - displayName: 'Update Links' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/UpdateLinks.ps1 - errorActionPreference: 'stop' - - task: PowerShell@2 - displayName: 'Repair Examples and Descriptions and Title' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/RepairExamplesDescriptionsAndTitle.ps1 - - task: PowerShell@2 - displayName: 'Remove boiler plate code' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/RemoveBoilerPlateCode.ps1 - - task: PowerShell@2 - displayName: 'Remove invalid fullstops' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/RemoveInvalidFullStops.ps1 - - task: PowerShell@2 - displayName: 'Generate missing docs for aliased cmdlets' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/GenerateAliasedDocs.ps1 - - task: PowerShell@2 - displayName: 'Correct related links section' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/CorrectRelatedLinks-AllFiles.ps1 - - task: AzureKeyVault@2 - displayName: "Azure Key Vault: Get GitHub App secrets" - inputs: - azureSubscription: "Federated AKV Managed Identity Connection" - KeyVaultName: akv-prod-eastus - SecretsFilter: "microsoft-graph-devx-bot-appid,microsoft-graph-devx-bot-privatekey" - - task: PowerShell@2 - displayName: Pushing to github - env: - GhAppId: $(microsoft-graph-devx-bot-appid) - GhAppKey: $(microsoft-graph-devx-bot-privatekey) - inputs: - targetType: inline - pwsh: true - script: | - git config --global user.email "GraphTooling@service.microsoft.com" - git config --global user.name "Microsoft Graph DevX Tooling" - git config --system core.longpaths true - # The microsoft-graph-devx-bot GitHub App must have contents:write on this repo. - $token = & "$(Build.SourcesDirectory)/scripts/Generate-Github-Token.ps1" -AppClientId $env:GhAppId -AppPrivateKeyContents $env:GhAppKey -Repository "MicrosoftDocs/microsoftgraph-docs-powershell" - if ([string]::IsNullOrWhiteSpace($token)) { throw "Failed to generate GitHub App installation token." } - # Mask the token so it is never surfaced in pipeline logs. - Write-Host "##vso[task.setsecret]$token" - git status - git add . - git commit -m "Updating reference docs" - git push --set-upstream "https://x-access-token:$token@github.com/MicrosoftDocs/microsoftgraph-docs-powershell.git" $(ComputeBranch.WeeklyReferenceDocsBranch) - git status - - template: azure-pipelines/common-templates/create-pr.yml@self - parameters: - BaseBranch: "main" - TargetBranch: $(ComputeBranch.WeeklyReferenceDocsBranch) - Title: "Weekly PowerShell Microsoft Graph Reference Docs Refresh" - Body: "This pull request was automatically created by Azure Pipelines. **Important** Check for unexpected deletions or changes in this PR." \ No newline at end of file + - template: azure-pipelines/common-templates/module-stages.yml@self + parameters: + GraphProfileFilter: "v1.0" + ProfileLabel: "v1" + BranchPrefix: "WeeklyDocs" + BaseBranch: "main" + PipelineTimeout: ${{ parameters.PipelineTimeout }} + Modules: + - Authentication + - Applications + - Bookings + - BusinessScenario + - BackupRestore + - Calendar + - ChangeNotifications + - CloudCommunications + - Compliance + - CrossDeviceExperiences + - Devices.CloudPrint + - Devices.CorporateManagement + - Devices.ServiceAnnouncement + - DeviceManagement + - DeviceManagement.Administration + - DeviceManagement.Enrollment + - DeviceManagement.Actions + - DeviceManagement.Functions + - DirectoryObjects + - Education + - Files + - Financials + - Groups + - Identity.DirectoryManagement + - Identity.Governance + - Identity.SignIns + - Identity.Partner + - Mail + - ManagedTenants + - NetworkAccess + - Notes + - People + - PersonalContacts + - Planner + - Reports + - SchemaExtensions + - Search + - Security + - Sites + - Teams + - Users + - Users.Actions + - Users.Functions + - WindowsUpdates + - template: azure-pipelines/common-templates/module-stages.yml@self + parameters: + GraphProfileFilter: "beta" + ProfileLabel: "beta" + BranchPrefix: "WeeklyDocs" + BaseBranch: "main" + PipelineTimeout: ${{ parameters.PipelineTimeout }} + Modules: + - Applications + - Bookings + - BusinessScenario + - BackupRestore + - Calendar + - ChangeNotifications + - CloudCommunications + - Compliance + - CrossDeviceExperiences + - Devices.CloudPrint + - Devices.CorporateManagement + - Devices.ServiceAnnouncement + - DeviceManagement + - DeviceManagement.Administration + - DeviceManagement.Enrollment + - DeviceManagement.Actions + - DeviceManagement.Functions + - DirectoryObjects + - Education + - Files + - Financials + - Groups + - Identity.DirectoryManagement + - Identity.Governance + - Identity.SignIns + - Identity.Partner + - Mail + - ManagedTenants + - NetworkAccess + - Notes + - People + - PersonalContacts + - Planner + - Reports + - SchemaExtensions + - Search + - Security + - Sites + - Teams + - Users + - Users.Actions + - Users.Functions + - WindowsUpdates diff --git a/azure-pipelines/update-template.yml b/azure-pipelines/update-template.yml index cd0ec7be60216..8884e887a9aae 100644 --- a/azure-pipelines/update-template.yml +++ b/azure-pipelines/update-template.yml @@ -1,3 +1,16 @@ +parameters: + # Which SDK profile to install for. "both" preserves the original full-run behaviour and + # installs the Microsoft.Graph and Microsoft.Graph.Beta meta modules. + - name: InstallProfile + type: string + default: both + # When set, only the single workload submodule for that module (plus Authentication) is + # installed instead of the whole SDK. This keeps each isolated per-module stage fast and + # guarantees only one workload module is ever present in the session. + - name: Module + type: string + default: "" + steps: - task: PowerShell@2 displayName: Install Required Modules @@ -12,25 +25,44 @@ steps: if (-not (Get-PSRepository -Name PowerShell_V2_Build -ErrorAction SilentlyContinue)) { Register-PSRepository -Name PowerShell_V2_Build -SourceLocation $feedUrl -InstallationPolicy Trusted -Credential $cred } - try{ - # Try to update the V1 module first. - Install-Module Microsoft.Graph.Beta -Repository PowerShell_V2_Build -Credential $cred -Scope AllUsers -AcceptLicense -SkipPublisherCheck -Force -AllowClobber - }catch{ - # If the module is not installed, install it. - echo "Error when installing Beta" + + $installProfile = "${{ parameters.InstallProfile }}" + $module = "${{ parameters.Module }}" + + # Build the list of modules to install. + $toInstall = @() + if ([string]::IsNullOrWhiteSpace($module)) { + # Full-run behaviour: install the meta module(s) for the requested profile(s). + if ($installProfile -ne 'v1.0') { $toInstall += 'Microsoft.Graph.Beta' } + if ($installProfile -ne 'beta') { $toInstall += 'Microsoft.Graph' } } - try{ - # Try to update the beta module first. - Install-Module Microsoft.Graph -Repository PowerShell_V2_Build -Credential $cred -Scope AllUsers -AcceptLicense -SkipPublisherCheck -Force -AllowClobber - }catch{ - # If the module is not installed, install it. - echo "Error when installing V1" + else { + # Isolated per-module run: install only Authentication + the single workload + # submodule for the target profile. + $toInstall += 'Microsoft.Graph.Authentication' + if ($installProfile -eq 'beta') { + $toInstall += "Microsoft.Graph.Beta.$module" + } + else { + $toInstall += "Microsoft.Graph.$module" + } + } + + foreach ($m in $toInstall) { + try { + Install-Module $m -Repository PowerShell_V2_Build -Credential $cred -Scope AllUsers -AcceptLicense -SkipPublisherCheck -Force -AllowClobber + } + catch { + # Do not fail the install step; a missing/failed module surfaces later as a + # fail-safe (no deletion, no PR) in the isolated generation stage. + Write-Host "##vso[task.logissue type=warning]Failed to install $m : $($_.Exception.Message)" + } } - $modules = Get-Module -Name Microsoft.Graph -ListAvailable + $modules = Get-Module -Name Microsoft.Graph* -ListAvailable foreach($r in $modules) { - echo $r.Version + echo "$($r.Name) $($r.Version)" } env: SYSTEM_ACCESSTOKEN: $(System.AccessToken) diff --git a/scripts/CorrectRelatedLinks-AllFiles.ps1 b/scripts/CorrectRelatedLinks-AllFiles.ps1 index 3f6a71383b9e6..be414538528a7 100644 --- a/scripts/CorrectRelatedLinks-AllFiles.ps1 +++ b/scripts/CorrectRelatedLinks-AllFiles.ps1 @@ -19,7 +19,11 @@ param( [Parameter(Mandatory = $false)] [ValidateSet("v1.0", "beta", "both")] - [string]$GraphProfile = "both" + [Alias("GraphProfileFilter")] + [string]$GraphProfile = "both", + + [Parameter(Mandatory = $false)] + [string]$ModuleFilter = "" ) function Get-GraphMapping { @@ -217,6 +221,10 @@ if ($ModulesToGenerate.Count -eq 0) { } } +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} + # Main execution Write-Host "=== Related Links Correction Script ===" -ForegroundColor Blue Write-Host "Working directory: $WorkLoadDocsPath" -ForegroundColor Blue diff --git a/scripts/EscapeDisallowedHtmlTags.ps1 b/scripts/EscapeDisallowedHtmlTags.ps1 index 597d7a5633f81..0039a05b33500 100644 --- a/scripts/EscapeDisallowedHtmlTags.ps1 +++ b/scripts/EscapeDisallowedHtmlTags.ps1 @@ -2,7 +2,10 @@ # Licensed under the MIT License. Param( $ModulesToGenerate = @(), - [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc") + [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -20,13 +23,19 @@ function EscapeDisallowedHtmlTags { $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $graphProfile -ne $GraphProfileFilter) { return } Get-FilesByProfile -GraphProfile $graphProfile -GraphProfilePath $GraphMapping[$graphProfile] -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Escaped disallowed html tags" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Escaped disallowed html tags" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FilesByProfile { Param( @@ -322,5 +331,8 @@ function CleanupFile { } Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} EscapeDisallowedHtmlTags -ModulesToGenerate $ModulesToGenerate Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file diff --git a/scripts/GenerateAliasedDocs.ps1 b/scripts/GenerateAliasedDocs.ps1 index 97eba9685354d..c7ba9bec1d19c 100644 --- a/scripts/GenerateAliasedDocs.ps1 +++ b/scripts/GenerateAliasedDocs.ps1 @@ -6,12 +6,18 @@ See related PR for more information. #> +Param( + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" +) + function Start-GenerateAliasedDocs { $BreakingChangeReportV1Report = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/docs/PowerShellBreakingChanges-V1.0.csv") $BreakingChangeReportBetaReport = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/docs/PowerShellBreakingChanges-beta.csv") $Reports = @() - $Reports += $BreakingChangeReportV1Report - $Reports += $BreakingChangeReportBetaReport + if ($GraphProfileFilter -ne "beta") { $Reports += $BreakingChangeReportV1Report } + if ($GraphProfileFilter -ne "v1.0") { $Reports += $BreakingChangeReportBetaReport } foreach ($BreakingChangeReport in $Reports) { Import-Csv $BreakingChangeReport | ForEach-Object { $Command = $_."NewCmdlet" @@ -39,6 +45,7 @@ function Copy-Files { if($CmdDetails){ $Module = $CmdDetails.Module $Module = $Module.Replace("Beta.", "") + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $Module -ne $ModuleFilter) { return } $Module = "$ModulePrefix.$Module" $NewDoc = (Join-Path $PSScriptRoot "../microsoftgraph" $GraphProfilePath $Module "$Command.md") if(Test-Path $NewDoc) { diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index 0d5a062bef429..ed6c85dcdb009 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -5,7 +5,16 @@ Param( $ModulesToGenerate = @(), [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config\ModulesMapping.jsonc"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $CmdletMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json") + [string] $CmdletMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json"), + # Restrict generation to a single SDK profile ("v1.0" or "beta"); "both" keeps the + # original full-run behaviour. + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + # Restrict generation to a single module (e.g. "Applications" or "Authentication"). Empty + # means all modules. When set, the run is "scoped": the module's folder is completely + # cleared and regenerated, and an import failure aborts THIS run (fail-safe, no deletion) + # instead of silently skipping. + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -51,36 +60,55 @@ function Start-GraphHelp { Param( $ModulesToGenerate = @() ) - - #Generate for auth module first + $ModulePrefix = "Microsoft.Graph" $AuthPath = "$ModulePrefix.Authentication" $AuthDestination = Join-Path $WorkLoadDocsPath "graph-powershell-1.0" $AuthPath - # Guard against catastrophic deletions: never remove existing docs unless the module - # is available to regenerate them. Authentication is required for every run, so abort - # if it failed to install rather than wiping committed documentation. - if (-not (Get-Module -Name Microsoft.Graph.Authentication -ListAvailable -ErrorAction SilentlyContinue)) { - throw "Microsoft.Graph.Authentication module is not available. Aborting generation to avoid deleting existing documentation." + # Determine which profiles this run covers. + $GraphMapping = Get-GraphMapping + $profilesToProcess = @($GraphMapping.Keys) + if ($GraphProfileFilter -ne "both") { + $profilesToProcess = @($GraphProfileFilter) } - Import-Module Microsoft.Graph.Authentication -Force -Global -ErrorAction Stop - Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } - $GraphMapping = Get-GraphMapping - $GraphMapping.Keys | ForEach-Object { - $graphProfile = $_ - $profilePath = "graph-powershell-1.0" - if ($graphProfile -eq "beta") { - $profilePath = "graph-powershell-beta" - } + # Authentication docs live under graph-powershell-1.0 and are only generated on a full run + # or when Authentication is the explicitly targeted module. + $generateAuth = ([string]::IsNullOrWhiteSpace($ModuleFilter) -or $ModuleFilter -eq "Authentication") + if ($generateAuth -and ($profilesToProcess -contains "v1.0")) { + # Guard against catastrophic deletions: never remove existing docs unless the module + # is available to regenerate them. Authentication is required for every run, so abort + # if it failed to install rather than wiping committed documentation. + if (-not (Get-Module -Name Microsoft.Graph.Authentication -ListAvailable -ErrorAction SilentlyContinue)) { + throw "Microsoft.Graph.Authentication module is not available. Aborting generation to avoid deleting existing documentation." + } + Import-Module Microsoft.Graph.Authentication -Force -Global -ErrorAction Stop + Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } $AuthenticationDocsPath = Join-Path $PSScriptRoot "..\microsoftgraph\graph-powershell-1.0" - Set-Help -ModuleDocsPath $AuthenticationDocsPath -Command "Connect-MgGraph" -Module "Microsoft.Graph.Authentication" - Get-FolderByProfile -GraphProfile $graphProfile -GraphProfilePath $profilePath -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate + Set-Help -ModuleDocsPath $AuthenticationDocsPath -Command "Connect-MgGraph" -Module "Microsoft.Graph.Authentication" + } + + # Workload modules. Skip entirely when Authentication is the explicit single target. + if ($ModuleFilter -ne "Authentication") { + $profilesToProcess | ForEach-Object { + $graphProfile = $_ + $profilePath = "graph-powershell-1.0" + if ($graphProfile -eq "beta") { + $profilePath = "graph-powershell-beta" + } + Get-FolderByProfile -GraphProfile $graphProfile -GraphProfilePath $profilePath -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate + } } + git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Updated markdown help" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Updated markdown help" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FolderByProfile { @@ -95,6 +123,14 @@ function Get-FolderByProfile { $ModulesToGenerate = @() ) $CommandMetadataContent = Get-Content $CmdletMetadataPath | ConvertFrom-Json + + # In scoped (single-module) runs, restrict to the requested module and enable + # complete-delete + regenerate for it (safe because the module is verified to import + # below before anything is removed). + $Scoped = -not [string]::IsNullOrWhiteSpace($ModuleFilter) + if ($Scoped) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) + } $ModulesToGenerate | ForEach-Object { $ModuleName = $_ @@ -125,6 +161,12 @@ function Get-FolderByProfile { } } if (-not $ModuleUsable) { + if ($Scoped) { + # Isolated single-module run: fail fast WITHOUT deleting anything so the + # module's committed docs are preserved. The pipeline job contains this + # failure (continueOnError) so it never fails the whole run or other modules. + throw "Module $Path is not usable in isolated generation; aborting this module without deleting its documentation." + } Write-Warning "Module $Path is not usable; skipping to preserve existing documentation." return } @@ -132,6 +174,13 @@ function Get-FolderByProfile { if (-not(Test-Path $Destination)) { New-Item -Path $Destination -ItemType Directory } + elseif ($Scoped) { + # Complete deletion + regeneration for this single module. Safe here because the + # module imported successfully above, so regeneration repopulates the folder. + Get-ChildItem -Path $Destination -Filter "*.md" -File | ForEach-Object { + Remove-Item $_.FullName -Force + } + } # NOTE: docs are intentionally NOT bulk-deleted here. Each doc is overwritten in # place as it is regenerated, and only genuine orphans (commands no longer in the @@ -209,4 +258,8 @@ if ($ModulesToGenerate.Count -eq 0) { } Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" Start-GraphHelp -ModulesToGenerate $ModulesToGenerate +# Signal successful generation so downstream pipeline steps (post-processing, push, PR) only +# run when this module actually generated. On an import failure the script throws before this +# line, the variable is never set, and the isolated stage opens no PR and deletes nothing. +Write-Host "##vso[task.setvariable variable=ModuleGenerated]true" Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file diff --git a/scripts/GeneratePermissionsTable.ps1 b/scripts/GeneratePermissionsTable.ps1 index 47e90ae3698f8..d854d62458c62 100644 --- a/scripts/GeneratePermissionsTable.ps1 +++ b/scripts/GeneratePermissionsTable.ps1 @@ -1,6 +1,9 @@ param( [string]$MgCommandMetadatJsonFile = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json"), - [string[]]$CmdList = @() + [string[]]$CmdList = @(), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Start-Generator { @@ -11,6 +14,9 @@ function Start-Generator { $CommandName = $_.Command; $ApiVersion = $_.ApiVersion $Module = $_.Module; + if ($GraphProfileFilter -ne "both" -and $ApiVersion -ne $GraphProfileFilter) { return } + $normalizedModule = $Module -replace "^Beta\.", "" + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $normalizedModule -ne $ModuleFilter) { return } #Array for DelegatedWork Permissions $DelegatedWorkPermissions = @(); #Array for Application Permissions @@ -70,7 +76,12 @@ function Start-Generator { git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Inserted permissions Table" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Inserted permissions Table" + } else { + $global:LASTEXITCODE = 0 + } } catch { Write-Host "Error in $_"; diff --git a/scripts/MsSubserviceUpdate.ps1 b/scripts/MsSubserviceUpdate.ps1 index d9bbd826afe67..54ce3c003d8ca 100644 --- a/scripts/MsSubserviceUpdate.ps1 +++ b/scripts/MsSubserviceUpdate.ps1 @@ -5,7 +5,10 @@ Param( [string] $SDKDocsPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src"), [string] $SDKOpenApiPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $MissingMsSubserviceHeaderPath = (Join-Path $PSScriptRoot "../missingexternaldocsurl") + [string] $MissingMsSubserviceHeaderPath = (Join-Path $PSScriptRoot "../missingexternaldocsurl"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Start-Generator { if (Test-Path $CommandMetadataPath) { @@ -22,6 +25,8 @@ function Start-Generator { $ModulePrefix = "Microsoft.Graph.Beta" $ModuleName = $ModuleName.Replace("Beta.", "") } + if ($GraphProfileFilter -ne "both" -and $GraphProfile -ne $GraphProfileFilter) { return } + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $ModuleName -ne $ModuleFilter) { return } $Path = "$ModulePrefix.$ModuleName" $DestinationFile = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path "$Command.md" try { diff --git a/scripts/RemoveBoilerPlateCode.ps1 b/scripts/RemoveBoilerPlateCode.ps1 index 246e79ba3febe..8158654b106a1 100644 --- a/scripts/RemoveBoilerPlateCode.ps1 +++ b/scripts/RemoveBoilerPlateCode.ps1 @@ -4,7 +4,10 @@ Param( $ModulesToGenerate = @(), [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $AuthLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Authentication") + [string] $AuthLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Authentication"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -19,19 +22,22 @@ function Start-Repair { $ModulesToGenerate = @() ) - #Cleanup Authentication Module first - $files = Get-ChildItem -Path $AuthLoadDocsPath -Filter *.md -Recurse - foreach ($file in $files) { - $content = Get-Content -Path $file.FullName - # Remove lines that contain '{{ Fill in the Description }}' or '### This' or '### *' or '### have' or '### certain' or '### the' - $cleanedContent = $content | Where-Object { $_ -notmatch '^\s*{{ Fill in the Description }}|^\s*### This|^\s*### \*|^\s*### have|^\s*### certain|^\s*### the' } - # Write the cleaned content back to the file - $cleanedContent | Set-Content -Path $file.FullName + #Cleanup Authentication Module first (only on a full run or the Authentication stage). + if ([string]::IsNullOrWhiteSpace($ModuleFilter) -or $ModuleFilter -eq "Authentication") { + $files = Get-ChildItem -Path $AuthLoadDocsPath -Filter *.md -Recurse + foreach ($file in $files) { + $content = Get-Content -Path $file.FullName + # Remove lines that contain '{{ Fill in the Description }}' or '### This' or '### *' or '### have' or '### certain' or '### the' + $cleanedContent = $content | Where-Object { $_ -notmatch '^\s*{{ Fill in the Description }}|^\s*### This|^\s*### \*|^\s*### have|^\s*### certain|^\s*### the' } + # Write the cleaned content back to the file + $cleanedContent | Set-Content -Path $file.FullName + } } $ModulePrefix = "Microsoft.Graph" $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $graphProfile -ne $GraphProfileFilter) { return } $profilePath = "graph-powershell-1.0" if ($graphProfile -eq "beta") { $profilePath = "graph-powershell-beta" @@ -41,7 +47,12 @@ function Start-Repair { git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Remove boiler plate code injected by Autorest" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Remove boiler plate code injected by Autorest" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FilesByProfile { Param( @@ -118,5 +129,8 @@ if ($ModulesToGenerate.Count -eq 0) { } Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} Start-Repair -ModulesToGenerate $ModulesToGenerate Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file diff --git a/scripts/RemoveInvalidFullStops.ps1 b/scripts/RemoveInvalidFullStops.ps1 index db34789d58025..21cfad73afe51 100644 --- a/scripts/RemoveInvalidFullStops.ps1 +++ b/scripts/RemoveInvalidFullStops.ps1 @@ -2,7 +2,10 @@ # Licensed under the MIT License. Param( $ModulesToGenerate = @(), - [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc") + [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -20,13 +23,19 @@ function Remove-InvalidFullStops { $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $graphProfile -ne $GraphProfileFilter) { return } Get-FilesByProfile -GraphProfile $graphProfile -GraphProfilePath $GraphMapping[$graphProfile] -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Removed invalid full stops from the beginning of lines" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Removed invalid full stops from the beginning of lines" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FilesByProfile { Param( @@ -88,6 +97,9 @@ if ($ModulesToGenerate.Count -eq 0) { [HashTable] $ModuleMapping = Get-Content $ModuleMappingConfigPath | ConvertFrom-Json -AsHashTable $ModulesToGenerate = $ModuleMapping.Keys } +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} Remove-InvalidFullStops -ModulesToGenerate $ModulesToGenerate diff --git a/scripts/RepairExamplesDescriptionsAndTitle.ps1 b/scripts/RepairExamplesDescriptionsAndTitle.ps1 index c8e3c74074799..e1fd1d5a8f172 100644 --- a/scripts/RepairExamplesDescriptionsAndTitle.ps1 +++ b/scripts/RepairExamplesDescriptionsAndTitle.ps1 @@ -4,7 +4,10 @@ Param( $ModulesToGenerate = @(), [string] $SDKDocsPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $CommandMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json") + [string] $CommandMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Start-Copy { @@ -22,6 +25,8 @@ function Start-Copy { $ModulePrefix = "Microsoft.Graph.Beta" $ModuleName = $ModuleName.Replace("Beta.", "") } + if ($GraphProfileFilter -ne "both" -and $GraphProfile -ne $GraphProfileFilter) { return } + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $ModuleName -ne $ModuleFilter) { return } $DocPath = Join-Path $SDKDocsPath $ModuleName $GraphProfile "examples" "$Command.md" try { @@ -38,7 +43,12 @@ function Start-Copy { git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Repaired examples and descriptions" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Repaired examples and descriptions" + } else { + $global:LASTEXITCODE = 0 + } } diff --git a/scripts/UpdateLinks.ps1 b/scripts/UpdateLinks.ps1 index fcc8d8e2253b2..1ba011281aa6a 100644 --- a/scripts/UpdateLinks.ps1 +++ b/scripts/UpdateLinks.ps1 @@ -4,7 +4,10 @@ Param( $ModulesToGenerate = @(), [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), [string] $SDKDocsPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src"), - [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph") + [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -22,6 +25,7 @@ function Start-Update { $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $GraphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $GraphProfile -ne $GraphProfileFilter) { return } $profilePath = "graph-powershell-1.0" if ($GraphProfile -eq "beta") { $ProfilePath = "graph-powershell-beta" @@ -205,5 +209,8 @@ if ($ModulesToGenerate.Count -eq 0) { Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} Start-Update -ModulesToGenerate $ModulesToGenerate Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file From 5202fe4d4c7f28cceeacc3451143fda9366e18b0 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 11:11:08 -0700 Subject: [PATCH 09/16] Fix template path resolution in powershell-docs.yml Azure DevOps resolves template references relative to the directory of the referencing file. powershell-docs.yml lives in azure-pipelines/, so the "azure-pipelines/common-templates/module-stages.yml@self" path resolved to azure-pipelines/azure-pipelines/common-templates/module-stages.yml and failed with "Not Found". Use a path relative to the file's own directory instead. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4d27d82f-3809-40d2-b4e7-6623436ff2ef --- azure-pipelines/powershell-docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines/powershell-docs.yml b/azure-pipelines/powershell-docs.yml index b6dc5b22f8b9b..71679bf595944 100644 --- a/azure-pipelines/powershell-docs.yml +++ b/azure-pipelines/powershell-docs.yml @@ -47,7 +47,7 @@ extends: customBuildTags: - ES365AIMigrationTooling stages: - - template: azure-pipelines/common-templates/module-stages.yml@self + - template: common-templates/module-stages.yml@self parameters: GraphProfileFilter: "v1.0" ProfileLabel: "v1" @@ -99,7 +99,7 @@ extends: - Users.Actions - Users.Functions - WindowsUpdates - - template: azure-pipelines/common-templates/module-stages.yml@self + - template: common-templates/module-stages.yml@self parameters: GraphProfileFilter: "beta" ProfileLabel: "beta" From 38d0c76e65476766fd3da2a61ef02cabbf0d1746 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:37:09 +0000 Subject: [PATCH 10/16] Updated markdown help --- .../Enable-MgSolutionBackupRestore.md | 50 +- .../Get-MgSolutionBackupRestore.md | 44 +- ...et-MgSolutionBackupRestoreBrowseSession.md | 568 ++++++++++++ ...SolutionBackupRestoreBrowseSessionCount.md | 284 ++++++ ...SolutionBackupRestoreDriveInclusionRule.md | 48 +- ...ionBackupRestoreDriveInclusionRuleCount.md | 42 +- ...olutionBackupRestoreDriveProtectionUnit.md | 48 +- ...storeDriveProtectionUnitBulkAdditionJob.md | 48 +- ...DriveProtectionUnitBulkAdditionJobCount.md | 42 +- ...onBackupRestoreDriveProtectionUnitCount.md | 42 +- ...onBackupRestoreExchangeProtectionPolicy.md | 48 +- ...kupRestoreExchangeProtectionPolicyCount.md | 42 +- ...ngeProtectionPolicyMailboxInclusionRule.md | 56 +- ...otectionPolicyMailboxInclusionRuleCount.md | 50 +- ...geProtectionPolicyMailboxProtectionUnit.md | 48 +- ...icyMailboxProtectionUnitBulkAdditionJob.md | 52 +- ...ilboxProtectionUnitBulkAdditionJobCount.md | 46 +- ...tectionPolicyMailboxProtectionUnitCount.md | 46 +- ...tionBackupRestoreExchangeRestoreSession.md | 48 +- ...ackupRestoreExchangeRestoreSessionCount.md | 42 +- ...reSessionGranularMailboxRestoreArtifact.md | 48 +- ...sionGranularMailboxRestoreArtifactCount.md | 46 +- ...nularMailboxRestoreArtifactRestorePoint.md | 46 +- ...ngeRestoreSessionMailboxRestoreArtifact.md | 50 +- ...ilboxRestoreArtifactBulkAdditionRequest.md | 52 +- ...RestoreArtifactBulkAdditionRequestCount.md | 46 +- ...storeSessionMailboxRestoreArtifactCount.md | 46 +- ...ssionMailboxRestoreArtifactRestorePoint.md | 46 +- ...lutionBackupRestoreMailboxInclusionRule.md | 48 +- ...nBackupRestoreMailboxInclusionRuleCount.md | 42 +- ...utionBackupRestoreMailboxProtectionUnit.md | 48 +- ...oreMailboxProtectionUnitBulkAdditionJob.md | 48 +- ...ilboxProtectionUnitBulkAdditionJobCount.md | 42 +- ...BackupRestoreMailboxProtectionUnitCount.md | 42 +- ...RestoreOneDriveForBusinessBrowseSession.md | 570 ++++++++++++ ...reOneDriveForBusinessBrowseSessionCount.md | 284 ++++++ ...toreOneDriveForBusinessProtectionPolicy.md | 48 +- ...neDriveForBusinessProtectionPolicyCount.md | 42 +- ...inessProtectionPolicyDriveInclusionRule.md | 56 +- ...ProtectionPolicyDriveInclusionRuleCount.md | 50 +- ...nessProtectionPolicyDriveProtectionUnit.md | 50 +- ...olicyDriveProtectionUnitBulkAdditionJob.md | 52 +- ...DriveProtectionUnitBulkAdditionJobCount.md | 46 +- ...rotectionPolicyDriveProtectionUnitCount.md | 46 +- ...estoreOneDriveForBusinessRestoreSession.md | 48 +- ...eOneDriveForBusinessRestoreSessionCount.md | 42 +- ...inessRestoreSessionDriveRestoreArtifact.md | 50 +- ...DriveRestoreArtifactBulkAdditionRequest.md | 52 +- ...RestoreArtifactBulkAdditionRequestCount.md | 46 +- ...RestoreSessionDriveRestoreArtifactCount.md | 46 +- ...SessionDriveRestoreArtifactRestorePoint.md | 46 +- ...toreSessionGranularDriveRestoreArtifact.md | 598 +++++++++++++ ...essionGranularDriveRestoreArtifactCount.md | 383 ++++++++ .../Get-MgSolutionBackupRestorePoint.md | 50 +- .../Get-MgSolutionBackupRestorePointCount.md | 46 +- ...olutionBackupRestorePointProtectionUnit.md | 46 +- ...MgSolutionBackupRestoreProtectionPolicy.md | 48 +- ...utionBackupRestoreProtectionPolicyCount.md | 42 +- ...t-MgSolutionBackupRestoreProtectionUnit.md | 50 +- ...toreProtectionUnitAsDriveProtectionUnit.md | 50 +- ...reProtectionUnitAsMailboxProtectionUnit.md | 50 +- ...storeProtectionUnitAsSiteProtectionUnit.md | 50 +- ...olutionBackupRestoreProtectionUnitCount.md | 42 +- ...rotectionUnitCountAsDriveProtectionUnit.md | 42 +- ...tectionUnitCountAsMailboxProtectionUnit.md | 42 +- ...ProtectionUnitCountAsSiteProtectionUnit.md | 42 +- .../Get-MgSolutionBackupRestoreServiceApp.md | 52 +- ...-MgSolutionBackupRestoreServiceAppCount.md | 42 +- .../Get-MgSolutionBackupRestoreSession.md | 52 +- ...Get-MgSolutionBackupRestoreSessionCount.md | 46 +- ...ionBackupRestoreSharePointBrowseSession.md | 570 ++++++++++++ ...ckupRestoreSharePointBrowseSessionCount.md | 284 ++++++ ...BackupRestoreSharePointProtectionPolicy.md | 48 +- ...pRestoreSharePointProtectionPolicyCount.md | 42 +- ...ePointProtectionPolicySiteInclusionRule.md | 56 +- ...tProtectionPolicySiteInclusionRuleCount.md | 50 +- ...PointProtectionPolicySiteProtectionUnit.md | 50 +- ...PolicySiteProtectionUnitBulkAdditionJob.md | 52 +- ...ySiteProtectionUnitBulkAdditionJobCount.md | 46 +- ...ProtectionPolicySiteProtectionUnitCount.md | 46 +- ...onBackupRestoreSharePointRestoreSession.md | 48 +- ...kupRestoreSharePointRestoreSessionCount.md | 42 +- ...storeSessionGranularSiteRestoreArtifact.md | 598 +++++++++++++ ...SessionGranularSiteRestoreArtifactCount.md | 383 ++++++++ ...ePointRestoreSessionSiteRestoreArtifact.md | 50 +- ...nSiteRestoreArtifactBulkAdditionRequest.md | 52 +- ...RestoreArtifactBulkAdditionRequestCount.md | 46 +- ...tRestoreSessionSiteRestoreArtifactCount.md | 46 +- ...eSessionSiteRestoreArtifactRestorePoint.md | 46 +- ...gSolutionBackupRestoreSiteInclusionRule.md | 48 +- ...tionBackupRestoreSiteInclusionRuleCount.md | 42 +- ...SolutionBackupRestoreSiteProtectionUnit.md | 48 +- ...estoreSiteProtectionUnitBulkAdditionJob.md | 48 +- ...eSiteProtectionUnitBulkAdditionJobCount.md | 42 +- ...ionBackupRestoreSiteProtectionUnitCount.md | 42 +- ...MgSolutionBackupRestoreProtectionPolicy.md | 46 +- ...alize-MgSolutionBackupRestoreServiceApp.md | 54 +- ...itialize-MgSolutionBackupRestoreSession.md | 46 +- ...rowseSolutionBackupRestoreBrowseSession.md | 791 +++++++++++++++++ ...teSolutionBackupRestoreProtectionPolicy.md | 46 +- ...activateSolutionBackupRestoreServiceApp.md | 46 +- ...oardSolutionBackupRestoreProtectionUnit.md | 46 +- .../Microsoft.Graph.BackupRestore.md | 83 +- ...ew-MgSolutionBackupRestoreBrowseSession.md | 567 ++++++++++++ ...SolutionBackupRestoreDriveInclusionRule.md | 50 +- ...olutionBackupRestoreDriveProtectionUnit.md | 51 +- ...storeDriveProtectionUnitBulkAdditionJob.md | 51 +- ...onBackupRestoreExchangeProtectionPolicy.md | 58 +- ...tionBackupRestoreExchangeRestoreSession.md | 58 +- ...reSessionGranularMailboxRestoreArtifact.md | 57 +- ...ngeRestoreSessionMailboxRestoreArtifact.md | 54 +- ...ilboxRestoreArtifactBulkAdditionRequest.md | 60 +- ...lutionBackupRestoreMailboxInclusionRule.md | 52 +- ...utionBackupRestoreMailboxProtectionUnit.md | 52 +- ...oreMailboxProtectionUnitBulkAdditionJob.md | 51 +- ...RestoreOneDriveForBusinessBrowseSession.md | 591 +++++++++++++ ...toreOneDriveForBusinessProtectionPolicy.md | 57 +- ...estoreOneDriveForBusinessRestoreSession.md | 105 +-- ...inessRestoreSessionDriveRestoreArtifact.md | 54 +- ...DriveRestoreArtifactBulkAdditionRequest.md | 60 +- ...toreSessionGranularDriveRestoreArtifact.md | 798 +++++++++++++++++ .../New-MgSolutionBackupRestorePoint.md | 47 +- ...MgSolutionBackupRestoreProtectionPolicy.md | 53 +- .../New-MgSolutionBackupRestoreServiceApp.md | 51 +- .../New-MgSolutionBackupRestoreSession.md | 53 +- ...ionBackupRestoreSharePointBrowseSession.md | 591 +++++++++++++ ...BackupRestoreSharePointProtectionPolicy.md | 58 +- ...onBackupRestoreSharePointRestoreSession.md | 106 ++- ...storeSessionGranularSiteRestoreArtifact.md | 797 +++++++++++++++++ ...ePointRestoreSessionSiteRestoreArtifact.md | 54 +- ...nSiteRestoreArtifactBulkAdditionRequest.md | 58 +- ...gSolutionBackupRestoreSiteInclusionRule.md | 51 +- ...SolutionBackupRestoreSiteProtectionUnit.md | 50 +- ...estoreSiteProtectionUnitBulkAdditionJob.md | 51 +- .../Remove-MgSolutionBackupRestore.md | 41 +- ...ve-MgSolutionBackupRestoreBrowseSession.md | 425 +++++++++ ...SolutionBackupRestoreDriveInclusionRule.md | 44 +- ...olutionBackupRestoreDriveProtectionUnit.md | 44 +- ...storeDriveProtectionUnitBulkAdditionJob.md | 44 +- ...onBackupRestoreExchangeProtectionPolicy.md | 44 +- ...tionBackupRestoreExchangeRestoreSession.md | 44 +- ...reSessionGranularMailboxRestoreArtifact.md | 44 +- ...ngeRestoreSessionMailboxRestoreArtifact.md | 44 +- ...ilboxRestoreArtifactBulkAdditionRequest.md | 46 +- ...lutionBackupRestoreMailboxInclusionRule.md | 44 +- ...utionBackupRestoreMailboxProtectionUnit.md | 44 +- ...oreMailboxProtectionUnitBulkAdditionJob.md | 44 +- ...RestoreOneDriveForBusinessBrowseSession.md | 426 +++++++++ ...toreOneDriveForBusinessProtectionPolicy.md | 44 +- ...estoreOneDriveForBusinessRestoreSession.md | 44 +- ...inessRestoreSessionDriveRestoreArtifact.md | 44 +- ...DriveRestoreArtifactBulkAdditionRequest.md | 46 +- ...toreSessionGranularDriveRestoreArtifact.md | 448 ++++++++++ .../Remove-MgSolutionBackupRestorePoint.md | 44 +- ...MgSolutionBackupRestoreProtectionPolicy.md | 46 +- ...emove-MgSolutionBackupRestoreServiceApp.md | 46 +- .../Remove-MgSolutionBackupRestoreSession.md | 46 +- ...ionBackupRestoreSharePointBrowseSession.md | 425 +++++++++ ...BackupRestoreSharePointProtectionPolicy.md | 44 +- ...onBackupRestoreSharePointRestoreSession.md | 44 +- ...storeSessionGranularSiteRestoreArtifact.md | 448 ++++++++++ ...ePointRestoreSessionSiteRestoreArtifact.md | 44 +- ...nSiteRestoreArtifactBulkAdditionRequest.md | 46 +- ...gSolutionBackupRestoreSiteInclusionRule.md | 44 +- ...SolutionBackupRestoreSiteProtectionUnit.md | 44 +- ...estoreSiteProtectionUnitBulkAdditionJob.md | 44 +- .../Search-MgSolutionBackupRestorePoint.md | 58 +- ...tionBackupRestoreProtectionUnitOffboard.md | 46 +- .../Update-MgSolutionBackupRestore.md | 223 +++-- ...te-MgSolutionBackupRestoreBrowseSession.md | 744 ++++++++++++++++ ...SolutionBackupRestoreDriveInclusionRule.md | 58 +- ...olutionBackupRestoreDriveProtectionUnit.md | 58 +- ...storeDriveProtectionUnitBulkAdditionJob.md | 56 +- ...onBackupRestoreExchangeProtectionPolicy.md | 64 +- ...tionBackupRestoreExchangeRestoreSession.md | 64 +- ...reSessionGranularMailboxRestoreArtifact.md | 58 +- ...ngeRestoreSessionMailboxRestoreArtifact.md | 55 +- ...ilboxRestoreArtifactBulkAdditionRequest.md | 58 +- ...lutionBackupRestoreMailboxInclusionRule.md | 56 +- ...utionBackupRestoreMailboxProtectionUnit.md | 58 +- ...oreMailboxProtectionUnitBulkAdditionJob.md | 56 +- ...RestoreOneDriveForBusinessBrowseSession.md | 775 ++++++++++++++++ ...toreOneDriveForBusinessProtectionPolicy.md | 62 +- ...estoreOneDriveForBusinessRestoreSession.md | 104 +-- ...inessRestoreSessionDriveRestoreArtifact.md | 54 +- ...DriveRestoreArtifactBulkAdditionRequest.md | 58 +- ...toreSessionGranularDriveRestoreArtifact.md | 826 ++++++++++++++++++ .../Update-MgSolutionBackupRestorePoint.md | 54 +- ...MgSolutionBackupRestoreProtectionPolicy.md | 60 +- ...pdate-MgSolutionBackupRestoreServiceApp.md | 55 +- .../Update-MgSolutionBackupRestoreSession.md | 60 +- ...ionBackupRestoreSharePointBrowseSession.md | 772 ++++++++++++++++ ...BackupRestoreSharePointProtectionPolicy.md | 64 +- ...onBackupRestoreSharePointRestoreSession.md | 109 +-- ...storeSessionGranularSiteRestoreArtifact.md | 826 ++++++++++++++++++ ...ePointRestoreSessionSiteRestoreArtifact.md | 54 +- ...nSiteRestoreArtifactBulkAdditionRequest.md | 56 +- ...gSolutionBackupRestoreSiteInclusionRule.md | 56 +- ...SolutionBackupRestoreSiteProtectionUnit.md | 58 +- ...estoreSiteProtectionUnitBulkAdditionJob.md | 56 +- 200 files changed, 17820 insertions(+), 5940 deletions(-) create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSession.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreBrowseSession.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointBrowseSession.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md create mode 100644 microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md index 27e67275a3a70..9ac138f8e6cea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/enable-mgsolutionbackuprestore Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Enable-MgSolutionBackupRestore --- @@ -15,9 +15,6 @@ title: Enable-MgSolutionBackupRestore Enable the Microsoft 365 Backup Storage service for a tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Enable-MgBetaSolutionBackupRestore](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Enable-MgBetaSolutionBackupRestore?view=graph-powershell-beta) - ## SYNTAX ### EnableExpanded (Default) @@ -27,7 +24,6 @@ Enable-MgSolutionBackupRestore [-ResponseHeadersVariable ] [-AdditionalProperties ] [-AppOwnerTenantId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Enable @@ -38,7 +34,6 @@ Enable-MgSolutionBackupRestore [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +45,16 @@ This cmdlet has the following aliases, Enable the Microsoft 365 Backup Storage service for a tenant. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -75,7 +80,7 @@ HelpMessage: '' ### -AppOwnerTenantId - +. ```yaml Type: System.String @@ -96,7 +101,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -359,35 +364,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [AppOwnerTenantId ]: ## RELATED LINKS -- [Enable-MgSolutionBackupRestore](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/enable-mgsolutionbackuprestore) -- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-enable?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/enable-mgsolutionbackuprestore) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-enable?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestore.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestore.md index 17e066e0b7650..8c23bc5eba22a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestore.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestore.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestore Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestore --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestore Get the serviceStatus of the Microsoft 365 Backup Storage service in a tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestore](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestore?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the serviceStatus of the Microsoft 365 Backup Storage service in a tenant. Get-MgSolutionBackupRestore [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the serviceStatus of the Microsoft 365 Backup Storage service in a tenant. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -276,28 +283,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestore](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestore) -- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestore) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSession.md new file mode 100644 index 0000000000000..c6f53e2eae678 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSession.md @@ -0,0 +1,568 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorebrowsesession +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Get-MgSolutionBackupRestoreBrowseSession +--- + +# Get-MgSolutionBackupRestoreBrowseSession + +## SYNOPSIS + +The list of browse sessions in the tenant. + +## SYNTAX + +### List (Default) + +``` +Get-MgSolutionBackupRestoreBrowseSession [-ExpandProperty ] [-Property ] + [-Filter ] [-Search ] [-Skip ] [-Sort ] [-Top ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] + [-CountVariable ] +``` + +### Get + +``` +Get-MgSolutionBackupRestoreBrowseSession -BrowseSessionBaseId [-ExpandProperty ] + [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] +``` + +### GetViaIdentity + +``` +Get-MgSolutionBackupRestoreBrowseSession -InputObject + [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +The list of browse sessions in the tenant. + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -All + +List all pages. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BrowseSessionBaseId + +The unique identifier of browseSessionBase + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Get + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -CountVariable + +Specifies a count of the total number of items in a collection. +By default, this variable will be set in the global scope. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- CV +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ExpandProperty + +Expand related entities + +```yaml +Type: System.String[] +DefaultValue: '' +SupportsWildcards: false +Aliases: +- Expand +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Filter + +Filter items by property values + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: GetViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -PageSize + +Sets the page size of results. + +```yaml +Type: System.Int32 +DefaultValue: 0 +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Property + +Select properties to be returned + +```yaml +Type: System.String[] +DefaultValue: '' +SupportsWildcards: false +Aliases: +- Select +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Search + +Search items by search phrases + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Skip + +Skip the first n items + +```yaml +Type: System.Int32 +DefaultValue: 0 +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Sort + +Order items by property values + +```yaml +Type: System.String[] +DefaultValue: '' +SupportsWildcards: false +Aliases: +- OrderBy +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Top + +Show only the first n items + +```yaml +Type: System.Int32 +DefaultValue: 0 +SupportsWildcards: false +Aliases: +- Limit +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphBrowseSessionBase + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [BrowseSessionBaseId ]: The unique identifier of browseSessionBase + [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule + [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit + [DriveProtectionUnitsBulkAdditionJobId ]: The unique identifier of driveProtectionUnitsBulkAdditionJob + [DriveRestoreArtifactId ]: The unique identifier of driveRestoreArtifact + [DriveRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of driveRestoreArtifactsBulkAdditionRequest + [ExchangeProtectionPolicyId ]: The unique identifier of exchangeProtectionPolicy + [ExchangeRestoreSessionId ]: The unique identifier of exchangeRestoreSession + [GranularDriveRestoreArtifactId ]: The unique identifier of granularDriveRestoreArtifact + [GranularMailboxRestoreArtifactId ]: The unique identifier of granularMailboxRestoreArtifact + [GranularSiteRestoreArtifactId ]: The unique identifier of granularSiteRestoreArtifact + [MailboxProtectionRuleId ]: The unique identifier of mailboxProtectionRule + [MailboxProtectionUnitId ]: The unique identifier of mailboxProtectionUnit + [MailboxProtectionUnitsBulkAdditionJobId ]: The unique identifier of mailboxProtectionUnitsBulkAdditionJob + [MailboxRestoreArtifactId ]: The unique identifier of mailboxRestoreArtifact + [MailboxRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of mailboxRestoreArtifactsBulkAdditionRequest + [NextFetchToken ]: Usage: nextFetchToken='{nextFetchToken}' + [OneDriveForBusinessBrowseSessionId ]: The unique identifier of oneDriveForBusinessBrowseSession + [OneDriveForBusinessProtectionPolicyId ]: The unique identifier of oneDriveForBusinessProtectionPolicy + [OneDriveForBusinessRestoreSessionId ]: The unique identifier of oneDriveForBusinessRestoreSession + [ProtectionPolicyBaseId ]: The unique identifier of protectionPolicyBase + [ProtectionUnitBaseId ]: The unique identifier of protectionUnitBase + [RestorePointId ]: The unique identifier of restorePoint + [RestoreSessionBaseId ]: The unique identifier of restoreSessionBase + [ServiceAppId ]: The unique identifier of serviceApp + [SharePointBrowseSessionId ]: The unique identifier of sharePointBrowseSession + [SharePointProtectionPolicyId ]: The unique identifier of sharePointProtectionPolicy + [SharePointRestoreSessionId ]: The unique identifier of sharePointRestoreSession + [SiteProtectionRuleId ]: The unique identifier of siteProtectionRule + [SiteProtectionUnitId ]: The unique identifier of siteProtectionUnit + [SiteProtectionUnitsBulkAdditionJobId ]: The unique identifier of siteProtectionUnitsBulkAdditionJob + [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact + [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorebrowsesession) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-browsesessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md new file mode 100644 index 0000000000000..577c3f12514da --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md @@ -0,0 +1,284 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorebrowsesessioncount +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Get-MgSolutionBackupRestoreBrowseSessionCount +--- + +# Get-MgSolutionBackupRestoreBrowseSessionCount + +## SYNOPSIS + +Get the number of the resource + +## SYNTAX + +### Get (Default) + +``` +Get-MgSolutionBackupRestoreBrowseSessionCount [-Filter ] [-Search ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Get the number of the resource + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Filter + +Filter items by property values + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Search + +Search items by search phrases + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### System.Int32 + +{{ Fill in the Description }} + +## NOTES + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorebrowsesessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRule.md index 9234638a8bdc1..fd70f8f78a3eb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRule.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveinclusionrule Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreDriveInclusionRule --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreDriveInclusionRule The list of drive inclusion rules applied to the tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreDriveInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreDriveInclusionRule?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreDriveInclusionRule [-ExpandProperty ] [-Pro [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgSolutionBackupRestoreDriveInclusionRule -DriveProtectionRuleId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgSolutionBackupRestoreDriveInclusionRule -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, The list of drive inclusion rules applied to the tenant. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -520,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -558,27 +565,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreDriveInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveinclusionrule) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRuleCount.md index f7f4891b4b02f..37a3b93cfb75b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRuleCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveinclusionrulecount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreDriveInclusionRuleCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreDriveInclusionRuleCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreDriveInclusionRuleCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreDriveInclusionRuleCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreDriveInclusionRuleCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestoreDriveInclusionRuleCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveinclusionrulecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveinclusionrulecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnit.md index 6e94c7f0a69f7..8f1be40c55558 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreDriveProtectionUnit --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreDriveProtectionUnit The list of drive protection units in the tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreDriveProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreDriveProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreDriveProtectionUnit [-ExpandProperty ] [-Pr [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgSolutionBackupRestoreDriveProtectionUnit -DriveProtectionUnitId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgSolutionBackupRestoreDriveProtectionUnit -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, The list of drive protection units in the tenant. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -520,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -558,27 +565,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreDriveProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunit) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md index e96248e16bbeb..8b3b4431674d1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob Get driveProtectionUnitsBulkAdditionJobs from solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob [-ExpandProperty < [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob -DriveProtectionUnitsBulkAdditionJobId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, Get driveProtectionUnitsBulkAdditionJobs from solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -520,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -558,27 +565,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.md index b874b08acdafd..aa20f2a852934 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunitbulkadditionjobcount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunitbulkadditionjobcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunitbulkadditionjobcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitCount.md index 773c1e0b4a218..2f56de148804a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunitcount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreDriveProtectionUnitCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreDriveProtectionUnitCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreDriveProtectionUnitCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreDriveProtectionUnitCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreDriveProtectionUnitCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestoreDriveProtectionUnitCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunitcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunitcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicy.md index c659ecce3ba07..02cc3a36338b3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicy Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreExchangeProtectionPolicy --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreExchangeProtectionPolicy The list of Exchange protection policies in the tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicy?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicy [-ExpandProperty ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicy -ExchangeProtectionPolicyId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicy -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, The list of Exchange protection policies in the tenant. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -520,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -558,27 +565,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreExchangeProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicy) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount.md index 03c064b9f0f97..39c8a5bb62d13 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicycount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md index efc24c8892c69..c23b506a596cb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxinclusionrule Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule --- @@ -19,9 +19,6 @@ An inclusion rule indicates that a protection policy should contain protection u The initial status of a protection rule upon creation is active. After the rule is applied, the state is either completed or completedWithErrors. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -33,7 +30,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -43,7 +40,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule -ExchangeProtectionPolicyId -MailboxProtectionRuleId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -53,7 +50,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -69,13 +66,15 @@ An inclusion rule indicates that a protection policy should contain protection u The initial status of a protection rule upon creation is active. After the rule is applied, the state is either completed or completedWithErrors. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -564,7 +563,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -602,29 +601,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxinclusionrule) -- [Graph API Reference](https://learn.microsoft.com/graph/api/protectionrulebase-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/exchangeprotectionpolicy-list-mailboxinclusionrules?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxinclusionrule) +- [](https://learn.microsoft.com/graph/api/protectionrulebase-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/exchangeprotectionpolicy-list-mailboxinclusionrules?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md index 4e750bdf75747..bb9df3ab82aa2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxinclusionrulecount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCo Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount -ExchangeProtectionPolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,13 +46,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -343,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -381,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxinclusionrulecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxinclusionrulecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit.md index 81a25d073c1b1..3786e41efd01e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit The protection units (mailboxes) that are protected under the Exchange protection policy. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit -ExchangeProtectionPolicyId -MailboxProtectionUnitId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +58,16 @@ This cmdlet has the following aliases, The protection units (mailboxes) that are protected under the Exchange protection policy. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -548,7 +555,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -586,27 +593,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunit) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.md index 035aebd37bc7c..d6ddd6fa54108 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunitbulkadditionjob Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitB Get a mailboxProtectionUnitsBulkAdditionJob object by the ID associated with an exchangeProtectionPolicy. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAddi [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAddi [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAddi -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,6 +59,16 @@ This cmdlet has the following aliases, Get a mailboxProtectionUnitsBulkAdditionJob object by the ID associated with an exchangeProtectionPolicy. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -549,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -587,29 +594,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunitbulkadditionjob) -- [Graph API Reference](https://learn.microsoft.com/graph/api/mailboxprotectionunitsbulkadditionjobs-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/exchangeprotectionpolicy-list-mailboxprotectionunitsbulkadditionjobs?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunitbulkadditionjob) +- [](https://learn.microsoft.com/graph/api/mailboxprotectionunitsbulkadditionjobs-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/exchangeprotectionpolicy-list-mailboxprotectionunitsbulkadditionjobs?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount.md index 2e41826d1bb63..f4f423a0cb5fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunitbulkadditionjobcount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitB Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAddi -ExchangeProtectionPolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAddi -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -335,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -373,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunitbulkadditionjobcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunitbulkadditionjobcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount.md index 4869db83485f3..2d680d4222574 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunitcount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitC Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount -ExchangeProtectionPolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -335,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -373,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunitcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunitcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSession.md index 690ded7a27803..54c4ba3dc6133 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresession Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreExchangeRestoreSession --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreExchangeRestoreSession The list of Exchange restore sessions available in the tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeRestoreSession?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSession [-ExpandProperty ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSession -ExchangeRestoreSessionId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSession -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, The list of Exchange restore sessions available in the tenant. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -520,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -558,27 +565,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreExchangeRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionCount.md index f556533c38afd..61d014bc43645 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessioncount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreExchangeRestoreSessionCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreExchangeRestoreSessionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreExchangeRestoreSessionCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestoreExchangeRestoreSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index b391d499762e0..ae7054dbb5a66 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreAr Get granularMailboxRestoreArtifacts from solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,6 +59,16 @@ This cmdlet has the following aliases, Get granularMailboxRestoreArtifacts from solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -549,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -587,27 +594,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount.md index ec4dcfba99e53..b2f1e1570e4a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifactcount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreAr Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactC -ExchangeRestoreSessionId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactC -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -335,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -373,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifactcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifactcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint.md index 4c535875e26fd..f150e96220ed5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifactrestorepoint Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreAr Represents the date and time when an artifact is protected by a protectionPolicy and can be restored. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactR [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +35,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactR -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -50,6 +47,16 @@ This cmdlet has the following aliases, Represents the date and time when an artifact is protected by a protectionPolicy and can be restored. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -359,7 +366,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -397,27 +404,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifactrestorepoint) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifactrestorepoint) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md index 34fe0f089f218..3cb57b3e7d034 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact A collection of restore points and destination details that can be used to restore Exchange mailboxes. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact -ExchangeRestoreSessionId -MailboxRestoreArtifactId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +58,16 @@ This cmdlet has the following aliases, A collection of restore points and destination details that can be used to restore Exchange mailboxes. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -548,7 +555,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -586,28 +593,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact) -- [Graph API Reference](https://learn.microsoft.com/graph/api/exchangerestoresession-list-mailboxrestoreartifacts?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact) +- [](https://learn.microsoft.com/graph/api/exchangerestoresession-list-mailboxrestoreartifacts?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md index 451a6840b01b7..87a39fee8bc02 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBu Get a mailboxRestoreArtifactsBulkAdditionRequest object by its id, associated with an exchangeRestoreSession. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAddit [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAddit [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAddit -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,6 +59,16 @@ This cmdlet has the following aliases, Get a mailboxRestoreArtifactsBulkAdditionRequest object by its id, associated with an exchangeRestoreSession. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -549,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -587,29 +594,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest) -- [Graph API Reference](https://learn.microsoft.com/graph/api/mailboxrestoreartifactsbulkadditionrequest-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/exchangerestoresession-list-mailboxrestoreartifactsbulkadditionrequests?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest) +- [](https://learn.microsoft.com/graph/api/mailboxrestoreartifactsbulkadditionrequest-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/exchangerestoresession-list-mailboxrestoreartifactsbulkadditionrequests?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount.md index ff6704c8764fd..fc0655c9d25f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequestcount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBu Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAddit -ExchangeRestoreSessionId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAddit -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -335,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -373,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequestcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequestcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount.md index 141f9fb9d5605..f7c69a577df9a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactcount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCo Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount -ExchangeRestoreSessionId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -335,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -373,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.md index 4af1c47637fdb..4af1732db93c7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactrestorepoint Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRe Represents the date and time when an artifact is protected by a protectionPolicy and can be restored. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePo -ExchangeRestoreSessionId -MailboxRestoreArtifactId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePo -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Represents the date and time when an artifact is protected by a protectionPolicy and can be restored. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -358,7 +365,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -396,27 +403,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactrestorepoint) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactrestorepoint) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRule.md index a4881dc19768c..855359ce1c918 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRule.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxinclusionrule Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreMailboxInclusionRule --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreMailboxInclusionRule The list of mailbox inclusion rules applied to the tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreMailboxInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreMailboxInclusionRule?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreMailboxInclusionRule [-ExpandProperty ] [-P [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgSolutionBackupRestoreMailboxInclusionRule -MailboxProtectionRuleId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgSolutionBackupRestoreMailboxInclusionRule -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, The list of mailbox inclusion rules applied to the tenant. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -520,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -558,27 +565,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreMailboxInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxinclusionrule) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRuleCount.md index 884d591849c04..f7eba1049e9c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRuleCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxinclusionrulecount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreMailboxInclusionRuleCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreMailboxInclusionRuleCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreMailboxInclusionRuleCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreMailboxInclusionRuleCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreMailboxInclusionRuleCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestoreMailboxInclusionRuleCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxinclusionrulecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxinclusionrulecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnit.md index ec4038375ae65..0b584c5e11ad3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreMailboxProtectionUnit --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreMailboxProtectionUnit The list of mailbox protection units in the tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreMailboxProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreMailboxProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreMailboxProtectionUnit [-ExpandProperty ] [- [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgSolutionBackupRestoreMailboxProtectionUnit -MailboxProtectionUnitId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgSolutionBackupRestoreMailboxProtectionUnit -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, The list of mailbox protection units in the tenant. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -520,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -558,27 +565,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreMailboxProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunit) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md index c142efe7749c0..96e4a700a638c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob Get mailboxProtectionUnitsBulkAdditionJobs from solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob [-ExpandProperty [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob -MailboxProtectionUnitsBulkAdditionJobId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, Get mailboxProtectionUnitsBulkAdditionJobs from solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -520,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -558,27 +565,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.md index 9287061e42879..c4cc47371b29b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjobcount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjobcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjobcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md index d31dad34f8568..fd5e6ff443676 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunitcount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreMailboxProtectionUnitCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreMailboxProtectionUnitCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreMailboxProtectionUnitCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreMailboxProtectionUnitCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreMailboxProtectionUnitCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestoreMailboxProtectionUnitCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunitcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunitcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md new file mode 100644 index 0000000000000..fd50c92c6f6a1 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -0,0 +1,570 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessbrowsesession +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession +--- + +# Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession + +## SYNOPSIS + +Read the properties and relationships of oneDriveForBusinessBrowseSession object. + +## SYNTAX + +### List (Default) + +``` +Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession [-ExpandProperty ] + [-Property ] [-Filter ] [-Search ] [-Skip ] [-Sort ] + [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] + [-CountVariable ] +``` + +### Get + +``` +Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession + -OneDriveForBusinessBrowseSessionId [-ExpandProperty ] [-Property ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] +``` + +### GetViaIdentity + +``` +Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession -InputObject + [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Read the properties and relationships of oneDriveForBusinessBrowseSession object. + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -All + +List all pages. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -CountVariable + +Specifies a count of the total number of items in a collection. +By default, this variable will be set in the global scope. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- CV +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ExpandProperty + +Expand related entities + +```yaml +Type: System.String[] +DefaultValue: '' +SupportsWildcards: false +Aliases: +- Expand +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Filter + +Filter items by property values + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: GetViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -OneDriveForBusinessBrowseSessionId + +The unique identifier of oneDriveForBusinessBrowseSession + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Get + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -PageSize + +Sets the page size of results. + +```yaml +Type: System.Int32 +DefaultValue: 0 +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Property + +Select properties to be returned + +```yaml +Type: System.String[] +DefaultValue: '' +SupportsWildcards: false +Aliases: +- Select +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Search + +Search items by search phrases + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Skip + +Skip the first n items + +```yaml +Type: System.Int32 +DefaultValue: 0 +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Sort + +Order items by property values + +```yaml +Type: System.String[] +DefaultValue: '' +SupportsWildcards: false +Aliases: +- OrderBy +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Top + +Show only the first n items + +```yaml +Type: System.Int32 +DefaultValue: 0 +SupportsWildcards: false +Aliases: +- Limit +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphOneDriveForBusinessBrowseSession + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [BrowseSessionBaseId ]: The unique identifier of browseSessionBase + [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule + [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit + [DriveProtectionUnitsBulkAdditionJobId ]: The unique identifier of driveProtectionUnitsBulkAdditionJob + [DriveRestoreArtifactId ]: The unique identifier of driveRestoreArtifact + [DriveRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of driveRestoreArtifactsBulkAdditionRequest + [ExchangeProtectionPolicyId ]: The unique identifier of exchangeProtectionPolicy + [ExchangeRestoreSessionId ]: The unique identifier of exchangeRestoreSession + [GranularDriveRestoreArtifactId ]: The unique identifier of granularDriveRestoreArtifact + [GranularMailboxRestoreArtifactId ]: The unique identifier of granularMailboxRestoreArtifact + [GranularSiteRestoreArtifactId ]: The unique identifier of granularSiteRestoreArtifact + [MailboxProtectionRuleId ]: The unique identifier of mailboxProtectionRule + [MailboxProtectionUnitId ]: The unique identifier of mailboxProtectionUnit + [MailboxProtectionUnitsBulkAdditionJobId ]: The unique identifier of mailboxProtectionUnitsBulkAdditionJob + [MailboxRestoreArtifactId ]: The unique identifier of mailboxRestoreArtifact + [MailboxRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of mailboxRestoreArtifactsBulkAdditionRequest + [NextFetchToken ]: Usage: nextFetchToken='{nextFetchToken}' + [OneDriveForBusinessBrowseSessionId ]: The unique identifier of oneDriveForBusinessBrowseSession + [OneDriveForBusinessProtectionPolicyId ]: The unique identifier of oneDriveForBusinessProtectionPolicy + [OneDriveForBusinessRestoreSessionId ]: The unique identifier of oneDriveForBusinessRestoreSession + [ProtectionPolicyBaseId ]: The unique identifier of protectionPolicyBase + [ProtectionUnitBaseId ]: The unique identifier of protectionUnitBase + [RestorePointId ]: The unique identifier of restorePoint + [RestoreSessionBaseId ]: The unique identifier of restoreSessionBase + [ServiceAppId ]: The unique identifier of serviceApp + [SharePointBrowseSessionId ]: The unique identifier of sharePointBrowseSession + [SharePointProtectionPolicyId ]: The unique identifier of sharePointProtectionPolicy + [SharePointRestoreSessionId ]: The unique identifier of sharePointRestoreSession + [SiteProtectionRuleId ]: The unique identifier of siteProtectionRule + [SiteProtectionUnitId ]: The unique identifier of siteProtectionUnit + [SiteProtectionUnitsBulkAdditionJobId ]: The unique identifier of siteProtectionUnitsBulkAdditionJob + [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact + [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessbrowsesession) +- [](https://learn.microsoft.com/graph/api/onedriveforbusinessbrowsesession-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-onedriveforbusinessbrowsesessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md new file mode 100644 index 0000000000000..20eb23f573b30 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md @@ -0,0 +1,284 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessbrowsesessioncount +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount +--- + +# Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount + +## SYNOPSIS + +Get the number of the resource + +## SYNTAX + +### Get (Default) + +``` +Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount [-Filter ] + [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Get the number of the resource + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Filter + +Filter items by property values + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Search + +Search items by search phrases + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### System.Int32 + +{{ Fill in the Description }} + +## NOTES + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessbrowsesessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md index 7caee676a2390..d2442124ecaaa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy The list of OneDrive for Business protection policies in the tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicy?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy [-ExpandProperty [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy -OneDriveForBusinessProtectionPolicyId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, The list of OneDrive for Business protection policies in the tenant. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -520,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -558,27 +565,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount.md index d57cb9ed1a85f..0f90385ce5e92 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicycount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md index ca86daed795c8..b0f734ce94aa4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveinclusionrule Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule --- @@ -19,9 +19,6 @@ An inclusion rule indicates that a protection policy should contain protection u The initial status of a protection rule upon creation is active. After the rule is applied, the state is either completed or completedWithErrors. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -33,7 +30,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -44,7 +41,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -54,7 +51,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -70,13 +67,15 @@ An inclusion rule indicates that a protection policy should contain protection u The initial status of a protection rule upon creation is active. After the rule is applied, the state is either completed or completedWithErrors. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -565,7 +564,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -603,29 +602,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveinclusionrule) -- [Graph API Reference](https://learn.microsoft.com/graph/api/protectionrulebase-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/onedriveforbusinessprotectionpolicy-list-driveinclusionrules?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveinclusionrule) +- [](https://learn.microsoft.com/graph/api/protectionrulebase-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/onedriveforbusinessprotectionpolicy-list-driveinclusionrules?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md index 9e97c1d75fecd..93988d0ef057b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveinclusionrulecount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclus Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule -OneDriveForBusinessProtectionPolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,13 +46,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -343,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -381,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveinclusionrulecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveinclusionrulecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit.md index 5cacc2987235d..af4ad9ea7da40 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtec Contains the protection units associated with a OneDrive for Business protection policy. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUni [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUni [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUni -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,6 +59,16 @@ This cmdlet has the following aliases, Contains the protection units associated with a OneDrive for Business protection policy. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -549,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -587,28 +594,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunit) -- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-list-driveprotectionunits?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunit) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-driveprotectionunits?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.md index 63656c1b6ca7f..93e833a8a1124 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunitbulkadditionjob Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtec Get a driveProtectionUnitsBulkAdditionJob object by the ID associated with a oneDriveForBusinessProtectionPolicy. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUni [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUni [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUni -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,6 +59,16 @@ This cmdlet has the following aliases, Get a driveProtectionUnitsBulkAdditionJob object by the ID associated with a oneDriveForBusinessProtectionPolicy. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -549,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -587,29 +594,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunitbulkadditionjob) -- [Graph API Reference](https://learn.microsoft.com/graph/api/driveprotectionunitsbulkadditionjobs-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/onedriveforbusinessprotectionpolicy-list-driveprotectionunitsbulkadditionjobs?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunitbulkadditionjob) +- [](https://learn.microsoft.com/graph/api/driveprotectionunitsbulkadditionjobs-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/onedriveforbusinessprotectionpolicy-list-driveprotectionunitsbulkadditionjobs?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.md index dfb2ee69debb4..5dc0f645b5735 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunitbulkadditionjobcount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtec Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUni -OneDriveForBusinessProtectionPolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUni -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -335,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -373,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunitbulkadditionjobcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunitbulkadditionjobcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount.md index a6acce01527e0..829e452e907fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunitcount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtec Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUni -OneDriveForBusinessProtectionPolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUni -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -335,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -373,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunitcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunitcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md index da538f8f0cd7a..88af7c55b8e65 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresession Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession The list of OneDrive for Business restore sessions available in the tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSession?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession -OneDriveForBusinessRestoreSessionId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, The list of OneDrive for Business restore sessions available in the tenant. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -520,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -558,27 +565,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount.md index a9c895a2c0cf8..f41bda72daa74 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessioncount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md index 1b7cc7803f5e9..220c3de6eb82a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreA A collection of restore points and destination details that can be used to restore a OneDrive for work or school drive. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,6 +59,16 @@ This cmdlet has the following aliases, A collection of restore points and destination details that can be used to restore a OneDrive for work or school drive. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -549,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -587,28 +594,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact) -- [Graph API Reference](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-list-driverestoreartifacts?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact) +- [](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-list-driverestoreartifacts?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md index a62370ca5402e..e209b796fa735 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreA Get a driveRestoreArtifactsBulkAdditionRequest object by its id, associated with a oneDriveForBusinessRestoreSession. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,6 +59,16 @@ This cmdlet has the following aliases, Get a driveRestoreArtifactsBulkAdditionRequest object by its id, associated with a oneDriveForBusinessRestoreSession. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -549,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -587,29 +594,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest) -- [Graph API Reference](https://learn.microsoft.com/graph/api/driverestoreartifactsbulkadditionrequest-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-list-driverestoreartifactsbulkadditionrequests?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest) +- [](https://learn.microsoft.com/graph/api/driverestoreartifactsbulkadditionrequest-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-list-driverestoreartifactsbulkadditionrequests?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount.md index bf61dc98fabda..3d7b81b2137dd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequestcount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreA Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact -OneDriveForBusinessRestoreSessionId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -335,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -373,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequestcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequestcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount.md index a1f37260a01ee..e85e263e9f777 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactcount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreA Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact -OneDriveForBusinessRestoreSessionId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -335,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -373,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.md index bc24d8c50c8e1..bc7f84ff2fb04 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactrestorepoint Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreA Represents the date and time when an artifact is protected by a protectionPolicy and can be restored. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +35,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -50,6 +47,16 @@ This cmdlet has the following aliases, Represents the date and time when an artifact is protected by a protectionPolicy and can be restored. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -359,7 +366,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -397,27 +404,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactrestorepoint) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactrestorepoint) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md new file mode 100644 index 0000000000000..b4a93b39396d5 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -0,0 +1,598 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifact +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact +--- + +# Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact + +## SYNOPSIS + +A collection of browse session ID and item key details that can be used to restore OneDrive for work or school files and folders. + +## SYNTAX + +### List (Default) + +``` +Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact + -OneDriveForBusinessRestoreSessionId [-ExpandProperty ] [-Property ] + [-Filter ] [-Search ] [-Skip ] [-Sort ] [-Top ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] + [-CountVariable ] +``` + +### Get + +``` +Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact + -GranularDriveRestoreArtifactId -OneDriveForBusinessRestoreSessionId + [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] +``` + +### GetViaIdentity + +``` +Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact + -InputObject [-ExpandProperty ] [-Property ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +A collection of browse session ID and item key details that can be used to restore OneDrive for work or school files and folders. + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -All + +List all pages. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -CountVariable + +Specifies a count of the total number of items in a collection. +By default, this variable will be set in the global scope. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- CV +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ExpandProperty + +Expand related entities + +```yaml +Type: System.String[] +DefaultValue: '' +SupportsWildcards: false +Aliases: +- Expand +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Filter + +Filter items by property values + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -GranularDriveRestoreArtifactId + +The unique identifier of granularDriveRestoreArtifact + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Get + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: GetViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -OneDriveForBusinessRestoreSessionId + +The unique identifier of oneDriveForBusinessRestoreSession + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Get + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -PageSize + +Sets the page size of results. + +```yaml +Type: System.Int32 +DefaultValue: 0 +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Property + +Select properties to be returned + +```yaml +Type: System.String[] +DefaultValue: '' +SupportsWildcards: false +Aliases: +- Select +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Search + +Search items by search phrases + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Skip + +Skip the first n items + +```yaml +Type: System.Int32 +DefaultValue: 0 +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Sort + +Order items by property values + +```yaml +Type: System.String[] +DefaultValue: '' +SupportsWildcards: false +Aliases: +- OrderBy +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Top + +Show only the first n items + +```yaml +Type: System.Int32 +DefaultValue: 0 +SupportsWildcards: false +Aliases: +- Limit +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphGranularDriveRestoreArtifact + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [BrowseSessionBaseId ]: The unique identifier of browseSessionBase + [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule + [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit + [DriveProtectionUnitsBulkAdditionJobId ]: The unique identifier of driveProtectionUnitsBulkAdditionJob + [DriveRestoreArtifactId ]: The unique identifier of driveRestoreArtifact + [DriveRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of driveRestoreArtifactsBulkAdditionRequest + [ExchangeProtectionPolicyId ]: The unique identifier of exchangeProtectionPolicy + [ExchangeRestoreSessionId ]: The unique identifier of exchangeRestoreSession + [GranularDriveRestoreArtifactId ]: The unique identifier of granularDriveRestoreArtifact + [GranularMailboxRestoreArtifactId ]: The unique identifier of granularMailboxRestoreArtifact + [GranularSiteRestoreArtifactId ]: The unique identifier of granularSiteRestoreArtifact + [MailboxProtectionRuleId ]: The unique identifier of mailboxProtectionRule + [MailboxProtectionUnitId ]: The unique identifier of mailboxProtectionUnit + [MailboxProtectionUnitsBulkAdditionJobId ]: The unique identifier of mailboxProtectionUnitsBulkAdditionJob + [MailboxRestoreArtifactId ]: The unique identifier of mailboxRestoreArtifact + [MailboxRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of mailboxRestoreArtifactsBulkAdditionRequest + [NextFetchToken ]: Usage: nextFetchToken='{nextFetchToken}' + [OneDriveForBusinessBrowseSessionId ]: The unique identifier of oneDriveForBusinessBrowseSession + [OneDriveForBusinessProtectionPolicyId ]: The unique identifier of oneDriveForBusinessProtectionPolicy + [OneDriveForBusinessRestoreSessionId ]: The unique identifier of oneDriveForBusinessRestoreSession + [ProtectionPolicyBaseId ]: The unique identifier of protectionPolicyBase + [ProtectionUnitBaseId ]: The unique identifier of protectionUnitBase + [RestorePointId ]: The unique identifier of restorePoint + [RestoreSessionBaseId ]: The unique identifier of restoreSessionBase + [ServiceAppId ]: The unique identifier of serviceApp + [SharePointBrowseSessionId ]: The unique identifier of sharePointBrowseSession + [SharePointProtectionPolicyId ]: The unique identifier of sharePointProtectionPolicy + [SharePointRestoreSessionId ]: The unique identifier of sharePointRestoreSession + [SiteProtectionRuleId ]: The unique identifier of siteProtectionRule + [SiteProtectionUnitId ]: The unique identifier of siteProtectionUnit + [SiteProtectionUnitsBulkAdditionJobId ]: The unique identifier of siteProtectionUnitsBulkAdditionJob + [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact + [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifact) +- [](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-list-granulardriverestoreartifacts?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md new file mode 100644 index 0000000000000..b499dbb3c02a5 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md @@ -0,0 +1,383 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifactcount +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount +--- + +# Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount + +## SYNOPSIS + +Get the number of the resource + +## SYNTAX + +### Get (Default) + +``` +Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount + -OneDriveForBusinessRestoreSessionId [-Filter ] [-Search ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] +``` + +### GetViaIdentity + +``` +Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount + -InputObject [-Filter ] [-Search ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Get the number of the resource + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Filter + +Filter items by property values + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: GetViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -OneDriveForBusinessRestoreSessionId + +The unique identifier of oneDriveForBusinessRestoreSession + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Get + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Search + +Search items by search phrases + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### System.Int32 + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [BrowseSessionBaseId ]: The unique identifier of browseSessionBase + [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule + [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit + [DriveProtectionUnitsBulkAdditionJobId ]: The unique identifier of driveProtectionUnitsBulkAdditionJob + [DriveRestoreArtifactId ]: The unique identifier of driveRestoreArtifact + [DriveRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of driveRestoreArtifactsBulkAdditionRequest + [ExchangeProtectionPolicyId ]: The unique identifier of exchangeProtectionPolicy + [ExchangeRestoreSessionId ]: The unique identifier of exchangeRestoreSession + [GranularDriveRestoreArtifactId ]: The unique identifier of granularDriveRestoreArtifact + [GranularMailboxRestoreArtifactId ]: The unique identifier of granularMailboxRestoreArtifact + [GranularSiteRestoreArtifactId ]: The unique identifier of granularSiteRestoreArtifact + [MailboxProtectionRuleId ]: The unique identifier of mailboxProtectionRule + [MailboxProtectionUnitId ]: The unique identifier of mailboxProtectionUnit + [MailboxProtectionUnitsBulkAdditionJobId ]: The unique identifier of mailboxProtectionUnitsBulkAdditionJob + [MailboxRestoreArtifactId ]: The unique identifier of mailboxRestoreArtifact + [MailboxRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of mailboxRestoreArtifactsBulkAdditionRequest + [NextFetchToken ]: Usage: nextFetchToken='{nextFetchToken}' + [OneDriveForBusinessBrowseSessionId ]: The unique identifier of oneDriveForBusinessBrowseSession + [OneDriveForBusinessProtectionPolicyId ]: The unique identifier of oneDriveForBusinessProtectionPolicy + [OneDriveForBusinessRestoreSessionId ]: The unique identifier of oneDriveForBusinessRestoreSession + [ProtectionPolicyBaseId ]: The unique identifier of protectionPolicyBase + [ProtectionUnitBaseId ]: The unique identifier of protectionUnitBase + [RestorePointId ]: The unique identifier of restorePoint + [RestoreSessionBaseId ]: The unique identifier of restoreSessionBase + [ServiceAppId ]: The unique identifier of serviceApp + [SharePointBrowseSessionId ]: The unique identifier of sharePointBrowseSession + [SharePointProtectionPolicyId ]: The unique identifier of sharePointProtectionPolicy + [SharePointRestoreSessionId ]: The unique identifier of sharePointRestoreSession + [SiteProtectionRuleId ]: The unique identifier of siteProtectionRule + [SiteProtectionUnitId ]: The unique identifier of siteProtectionUnit + [SiteProtectionUnitsBulkAdditionJobId ]: The unique identifier of siteProtectionUnitsBulkAdditionJob + [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact + [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifactcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePoint.md index a99940bfb7b89..94d7880f92925 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePoint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorepoint Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestorePoint --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestorePoint List of restore points in the tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestorePoint](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestorePoint?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestorePoint [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +34,7 @@ Get-MgSolutionBackupRestorePoint [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -46,7 +43,7 @@ Get-MgSolutionBackupRestorePoint -RestorePointId [-ExpandProperty [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -58,6 +55,16 @@ This cmdlet has the following aliases, List of restore points in the tenant. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -518,7 +525,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -556,28 +563,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestorePoint](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorepoint) -- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-list-restorepoints?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorepoint) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-restorepoints?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md index 889c400f743ff..57923c5d1ee24 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorepointcount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestorePointCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestorePointCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestorePointCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestorePointCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestorePointCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,13 +35,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BackupRestore-Search.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BackupRestore-Search.Read.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestorePointCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorepointcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorepointcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointProtectionUnit.md index 8f160e87ec270..090e471a7ad49 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorepointprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestorePointProtectionUnit --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestorePointProtectionUnit The site, drive, or mailbox units that are protected under a protection policy. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestorePointProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestorePointProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ The site, drive, or mailbox units that are protected under a protection policy. Get-MgSolutionBackupRestorePointProtectionUnit -RestorePointId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -36,7 +33,7 @@ Get-MgSolutionBackupRestorePointProtectionUnit -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -48,6 +45,16 @@ This cmdlet has the following aliases, The site, drive, or mailbox units that are protected under a protection policy. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -336,7 +343,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -374,27 +381,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestorePointProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorepointprotectionunit) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorepointprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicy.md index 45e8764ff72a4..de2099a0a7810 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionpolicy Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreProtectionPolicy --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreProtectionPolicy List of protection policies in the tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreProtectionPolicy?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreProtectionPolicy [-ExpandProperty ] [-Prope [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgSolutionBackupRestoreProtectionPolicy -ProtectionPolicyBaseId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgSolutionBackupRestoreProtectionPolicy -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, List of protection policies in the tenant. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -520,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -558,27 +565,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionpolicy) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionpolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicyCount.md index 5aecf7f6d14b6..b5e56c91cccf9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicyCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionpolicycount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreProtectionPolicyCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreProtectionPolicyCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreProtectionPolicyCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreProtectionPolicyCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreProtectionPolicyCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestoreProtectionPolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionpolicycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionpolicycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnit.md index 0192954fd04d1..1b4eee587578b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreProtectionUnit --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreProtectionUnit Read the properties and relationships of a protectionUnitBase object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreProtectionUnit [-ExpandProperty ] [-Propert [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgSolutionBackupRestoreProtectionUnit -ProtectionUnitBaseId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgSolutionBackupRestoreProtectionUnit -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, Read the properties and relationships of a protectionUnitBase object. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -520,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -558,28 +565,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunit) -- [Graph API Reference](https://learn.microsoft.com/graph/api/protectionunitbase-get?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunit) +- [](https://learn.microsoft.com/graph/api/protectionunitbase-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.md index 9f01faa964974..9b7466f7a6e57 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitasdriveprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit Get a list of the driveProtectionUnit objects that are associated with a oneDriveForBusinessProtectionPolicy. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit [-ExpandProperty [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit -ProtectionUnitBa [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, Get a list of the driveProtectionUnit objects that are associated with a oneDriveForBusinessProtectionPolicy. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -520,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -558,28 +565,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitasdriveprotectionunit) -- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-list-driveprotectionunits?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitasdriveprotectionunit) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-driveprotectionunits?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.md index 4421e4c04ef97..c64a880348e12 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitasmailboxprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit Get a list of mailboxProtectionUnit objects. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit [-ExpandPropert [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit -ProtectionUnit [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, Get a list of mailboxProtectionUnit objects. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -520,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -558,28 +565,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitasmailboxprotectionunit) -- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-list-mailboxprotectionunits?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitasmailboxprotectionunit) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-mailboxprotectionunits?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.md index b58b90be6a148..5eff07d4d1b0d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitassiteprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit Get a list of the siteProtectionUnit objects that are associated with a sharePointProtectionPolicy. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit [-ExpandProperty < [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit -ProtectionUnitBas [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, Get a list of the siteProtectionUnit objects that are associated with a sharePointProtectionPolicy. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -520,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -558,28 +565,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitassiteprotectionunit) -- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-list-siteprotectionunits?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitassiteprotectionunit) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-siteprotectionunits?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCount.md index 19661e72b76ba..c40038c62450a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreProtectionUnitCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreProtectionUnitCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreProtectionUnitCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreProtectionUnitCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreProtectionUnitCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestoreProtectionUnitCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit.md index cb1f0c163be74..a2f3463f63aa1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcountasdriveprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcountasdriveprotectionunit) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcountasdriveprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit.md index 146ef340a5009..5ae35feb3dd90 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcountasmailboxprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcountasmailboxprotectionunit) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcountasmailboxprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit.md index b3445a8a38b1e..f6866620db75c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcountassiteprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcountassiteprotectionunit) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcountassiteprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceApp.md index 483bd9fefa980..4272dfd350b86 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceApp.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreserviceapp Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreServiceApp --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreServiceApp Read the properties and relationships of a serviceApp object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreServiceApp](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreServiceApp?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreServiceApp [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +34,7 @@ Get-MgSolutionBackupRestoreServiceApp [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgSolutionBackupRestoreServiceApp -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,6 +56,16 @@ This cmdlet has the following aliases, Read the properties and relationships of a serviceApp object. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -519,7 +526,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -557,29 +564,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreServiceApp](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreserviceapp) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceapp-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-list-serviceapps?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreserviceapp) +- [](https://learn.microsoft.com/graph/api/serviceapp-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-serviceapps?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceAppCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceAppCount.md index 83c98f1fbf47b..ecca9d7ca5beb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceAppCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceAppCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreserviceappcount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreServiceAppCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreServiceAppCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreServiceAppCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreServiceAppCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreServiceAppCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestoreServiceAppCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreserviceappcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreserviceappcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSession.md index 0fbf3822b8c4d..8cf32688e8bb7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresession Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSession --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreSession Get the properties of a restoreSession object by ID. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSession?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreSession [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +34,7 @@ Get-MgSolutionBackupRestoreSession [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +44,7 @@ Get-MgSolutionBackupRestoreSession -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -59,6 +56,16 @@ This cmdlet has the following aliases, Get the properties of a restoreSession object by ID. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -519,7 +526,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -557,29 +564,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresession) -- [Graph API Reference](https://learn.microsoft.com/graph/api/restoresessionbase-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-list-restoresessions?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresession) +- [](https://learn.microsoft.com/graph/api/restoresessionbase-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-restoresessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md index 31b92bb7455c6..bef90249d1e2d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresessioncount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSessionCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreSessionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSessionCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSessionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreSessionCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,13 +35,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BackupRestore-Restore.Read.All, BackupRestore-Restore.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BackupRestore-Restore.Read.All, BackupRestore-Restore.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -282,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresessioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md new file mode 100644 index 0000000000000..1ca6133c1ed13 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -0,0 +1,570 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointbrowsesession +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Get-MgSolutionBackupRestoreSharePointBrowseSession +--- + +# Get-MgSolutionBackupRestoreSharePointBrowseSession + +## SYNOPSIS + +Read the properties and relationships of sharePointBrowseSession object. + +## SYNTAX + +### List (Default) + +``` +Get-MgSolutionBackupRestoreSharePointBrowseSession [-ExpandProperty ] + [-Property ] [-Filter ] [-Search ] [-Skip ] [-Sort ] + [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] + [-CountVariable ] +``` + +### Get + +``` +Get-MgSolutionBackupRestoreSharePointBrowseSession -SharePointBrowseSessionId + [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] +``` + +### GetViaIdentity + +``` +Get-MgSolutionBackupRestoreSharePointBrowseSession -InputObject + [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Read the properties and relationships of sharePointBrowseSession object. + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -All + +List all pages. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -CountVariable + +Specifies a count of the total number of items in a collection. +By default, this variable will be set in the global scope. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- CV +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ExpandProperty + +Expand related entities + +```yaml +Type: System.String[] +DefaultValue: '' +SupportsWildcards: false +Aliases: +- Expand +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Filter + +Filter items by property values + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: GetViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -PageSize + +Sets the page size of results. + +```yaml +Type: System.Int32 +DefaultValue: 0 +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Property + +Select properties to be returned + +```yaml +Type: System.String[] +DefaultValue: '' +SupportsWildcards: false +Aliases: +- Select +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Search + +Search items by search phrases + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -SharePointBrowseSessionId + +The unique identifier of sharePointBrowseSession + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Get + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Skip + +Skip the first n items + +```yaml +Type: System.Int32 +DefaultValue: 0 +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Sort + +Order items by property values + +```yaml +Type: System.String[] +DefaultValue: '' +SupportsWildcards: false +Aliases: +- OrderBy +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Top + +Show only the first n items + +```yaml +Type: System.Int32 +DefaultValue: 0 +SupportsWildcards: false +Aliases: +- Limit +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphSharePointBrowseSession + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [BrowseSessionBaseId ]: The unique identifier of browseSessionBase + [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule + [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit + [DriveProtectionUnitsBulkAdditionJobId ]: The unique identifier of driveProtectionUnitsBulkAdditionJob + [DriveRestoreArtifactId ]: The unique identifier of driveRestoreArtifact + [DriveRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of driveRestoreArtifactsBulkAdditionRequest + [ExchangeProtectionPolicyId ]: The unique identifier of exchangeProtectionPolicy + [ExchangeRestoreSessionId ]: The unique identifier of exchangeRestoreSession + [GranularDriveRestoreArtifactId ]: The unique identifier of granularDriveRestoreArtifact + [GranularMailboxRestoreArtifactId ]: The unique identifier of granularMailboxRestoreArtifact + [GranularSiteRestoreArtifactId ]: The unique identifier of granularSiteRestoreArtifact + [MailboxProtectionRuleId ]: The unique identifier of mailboxProtectionRule + [MailboxProtectionUnitId ]: The unique identifier of mailboxProtectionUnit + [MailboxProtectionUnitsBulkAdditionJobId ]: The unique identifier of mailboxProtectionUnitsBulkAdditionJob + [MailboxRestoreArtifactId ]: The unique identifier of mailboxRestoreArtifact + [MailboxRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of mailboxRestoreArtifactsBulkAdditionRequest + [NextFetchToken ]: Usage: nextFetchToken='{nextFetchToken}' + [OneDriveForBusinessBrowseSessionId ]: The unique identifier of oneDriveForBusinessBrowseSession + [OneDriveForBusinessProtectionPolicyId ]: The unique identifier of oneDriveForBusinessProtectionPolicy + [OneDriveForBusinessRestoreSessionId ]: The unique identifier of oneDriveForBusinessRestoreSession + [ProtectionPolicyBaseId ]: The unique identifier of protectionPolicyBase + [ProtectionUnitBaseId ]: The unique identifier of protectionUnitBase + [RestorePointId ]: The unique identifier of restorePoint + [RestoreSessionBaseId ]: The unique identifier of restoreSessionBase + [ServiceAppId ]: The unique identifier of serviceApp + [SharePointBrowseSessionId ]: The unique identifier of sharePointBrowseSession + [SharePointProtectionPolicyId ]: The unique identifier of sharePointProtectionPolicy + [SharePointRestoreSessionId ]: The unique identifier of sharePointRestoreSession + [SiteProtectionRuleId ]: The unique identifier of siteProtectionRule + [SiteProtectionUnitId ]: The unique identifier of siteProtectionUnit + [SiteProtectionUnitsBulkAdditionJobId ]: The unique identifier of siteProtectionUnitsBulkAdditionJob + [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact + [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointbrowsesession) +- [](https://learn.microsoft.com/graph/api/sharepointbrowsesession-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-sharepointbrowsesessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md new file mode 100644 index 0000000000000..da041f7c31763 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md @@ -0,0 +1,284 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointbrowsesessioncount +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Get-MgSolutionBackupRestoreSharePointBrowseSessionCount +--- + +# Get-MgSolutionBackupRestoreSharePointBrowseSessionCount + +## SYNOPSIS + +Get the number of the resource + +## SYNTAX + +### Get (Default) + +``` +Get-MgSolutionBackupRestoreSharePointBrowseSessionCount [-Filter ] [-Search ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Get the number of the resource + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Filter + +Filter items by property values + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Search + +Search items by search phrases + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### System.Int32 + +{{ Fill in the Description }} + +## NOTES + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointbrowsesessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md index a6f4f4f8ef553..1564902005bcc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicy Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSharePointProtectionPolicy --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreSharePointProtectionPolicy The list of SharePoint protection policies in the tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicy?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicy [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicy -SharePointProtectionPolic [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicy -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, The list of SharePoint protection policies in the tenant. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -520,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -558,27 +565,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSharePointProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicy) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount.md index 8318487a0a469..f07c0c4d874a3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicycount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicyCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicyCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicycount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md index 5755337da28ae..2686fc234314c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteinclusionrule Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule --- @@ -19,9 +19,6 @@ An inclusion rule indicates that a protection policy should contain protection u The initial status of a protection rule upon creation is active. After the rule is applied, the state is either completed or completedWithErrors. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -33,7 +30,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -43,7 +40,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule -SharePointProtectionPolicyId -SiteProtectionRuleId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -53,7 +50,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -69,13 +66,15 @@ An inclusion rule indicates that a protection policy should contain protection u The initial status of a protection rule upon creation is active. After the rule is applied, the state is either completed or completedWithErrors. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -564,7 +563,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -602,29 +601,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteinclusionrule) -- [Graph API Reference](https://learn.microsoft.com/graph/api/protectionrulebase-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/sharepointprotectionpolicy-list-siteinclusionrules?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteinclusionrule) +- [](https://learn.microsoft.com/graph/api/protectionrulebase-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/sharepointprotectionpolicy-list-siteinclusionrules?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md index c6b2a8eee40d1..dccebbb2797e3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteinclusionrulecount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCou Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount -SharePointProtectionPolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,13 +46,15 @@ This cmdlet has the following aliases, Get the number of the resource -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | +{{ Add code here }} ## PARAMETERS @@ -343,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -381,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteinclusionrulecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteinclusionrulecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit.md index aba37eb4f7470..d8c33236e0c35 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit The protection units (sites) that are protected under the site protection policy. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit -SharePointProtectionPolicyId -SiteProtectionUnitId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +58,16 @@ This cmdlet has the following aliases, The protection units (sites) that are protected under the site protection policy. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -548,7 +555,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -586,28 +593,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunit) -- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-list-siteprotectionunits?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunit) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-siteprotectionunits?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob.md index 23a07cbddaced..8f080dc0d4b0f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunitbulkadditionjob Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBu Get a siteProtectionUnitsBulkAdditionJob object by the ID associated with a sharePointProtectionPolicy. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAddit [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAddit [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAddit -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,6 +59,16 @@ This cmdlet has the following aliases, Get a siteProtectionUnitsBulkAdditionJob object by the ID associated with a sharePointProtectionPolicy. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -549,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -587,29 +594,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunitbulkadditionjob) -- [Graph API Reference](https://learn.microsoft.com/graph/api/siteprotectionunitsbulkadditionjobs-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/sharepointprotectionpolicy-list-siteprotectionunitsbulkadditionjobs?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunitbulkadditionjob) +- [](https://learn.microsoft.com/graph/api/siteprotectionunitsbulkadditionjobs-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/sharepointprotectionpolicy-list-siteprotectionunitsbulkadditionjobs?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount.md index 27ac24edc9d96..37891e9074d59 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunitbulkadditionjobcount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBu Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAddit -SharePointProtectionPolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAddit -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -335,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -373,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunitbulkadditionjobcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunitbulkadditionjobcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount.md index 26674b9d4e166..3296bd749cfb2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunitcount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCo Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount -SharePointProtectionPolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -335,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -373,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunitcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunitcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSession.md index 6533739261130..e04ff99cad94d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresession Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSharePointRestoreSession --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreSharePointRestoreSession The list of SharePoint restore sessions available in the tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointRestoreSession?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSession [-ExpandProperty ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSession -SharePointRestoreSessionId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSession -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, The list of SharePoint restore sessions available in the tenant. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -520,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -558,27 +565,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSharePointRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionCount.md index e64b6482e5799..73952f2cb1732 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessioncount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSharePointRestoreSessionCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreSharePointRestoreSessionCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreSharePointRestoreSessionCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSharePointRestoreSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessioncount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md new file mode 100644 index 0000000000000..b014a870600eb --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -0,0 +1,598 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifact +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact +--- + +# Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact + +## SYNOPSIS + +A collection of browse session ID and item key details that can be used to restore SharePoint files and folders. + +## SYNTAX + +### List (Default) + +``` +Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact + -SharePointRestoreSessionId [-ExpandProperty ] [-Property ] + [-Filter ] [-Search ] [-Skip ] [-Sort ] [-Top ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] + [-CountVariable ] +``` + +### Get + +``` +Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact + -GranularSiteRestoreArtifactId -SharePointRestoreSessionId + [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] +``` + +### GetViaIdentity + +``` +Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact + -InputObject [-ExpandProperty ] [-Property ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +A collection of browse session ID and item key details that can be used to restore SharePoint files and folders. + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -All + +List all pages. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -CountVariable + +Specifies a count of the total number of items in a collection. +By default, this variable will be set in the global scope. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- CV +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ExpandProperty + +Expand related entities + +```yaml +Type: System.String[] +DefaultValue: '' +SupportsWildcards: false +Aliases: +- Expand +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Filter + +Filter items by property values + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -GranularSiteRestoreArtifactId + +The unique identifier of granularSiteRestoreArtifact + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Get + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: GetViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -PageSize + +Sets the page size of results. + +```yaml +Type: System.Int32 +DefaultValue: 0 +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Property + +Select properties to be returned + +```yaml +Type: System.String[] +DefaultValue: '' +SupportsWildcards: false +Aliases: +- Select +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Search + +Search items by search phrases + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -SharePointRestoreSessionId + +The unique identifier of sharePointRestoreSession + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Get + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Skip + +Skip the first n items + +```yaml +Type: System.Int32 +DefaultValue: 0 +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Sort + +Order items by property values + +```yaml +Type: System.String[] +DefaultValue: '' +SupportsWildcards: false +Aliases: +- OrderBy +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Top + +Show only the first n items + +```yaml +Type: System.Int32 +DefaultValue: 0 +SupportsWildcards: false +Aliases: +- Limit +ParameterSets: +- Name: List + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphGranularSiteRestoreArtifact + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [BrowseSessionBaseId ]: The unique identifier of browseSessionBase + [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule + [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit + [DriveProtectionUnitsBulkAdditionJobId ]: The unique identifier of driveProtectionUnitsBulkAdditionJob + [DriveRestoreArtifactId ]: The unique identifier of driveRestoreArtifact + [DriveRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of driveRestoreArtifactsBulkAdditionRequest + [ExchangeProtectionPolicyId ]: The unique identifier of exchangeProtectionPolicy + [ExchangeRestoreSessionId ]: The unique identifier of exchangeRestoreSession + [GranularDriveRestoreArtifactId ]: The unique identifier of granularDriveRestoreArtifact + [GranularMailboxRestoreArtifactId ]: The unique identifier of granularMailboxRestoreArtifact + [GranularSiteRestoreArtifactId ]: The unique identifier of granularSiteRestoreArtifact + [MailboxProtectionRuleId ]: The unique identifier of mailboxProtectionRule + [MailboxProtectionUnitId ]: The unique identifier of mailboxProtectionUnit + [MailboxProtectionUnitsBulkAdditionJobId ]: The unique identifier of mailboxProtectionUnitsBulkAdditionJob + [MailboxRestoreArtifactId ]: The unique identifier of mailboxRestoreArtifact + [MailboxRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of mailboxRestoreArtifactsBulkAdditionRequest + [NextFetchToken ]: Usage: nextFetchToken='{nextFetchToken}' + [OneDriveForBusinessBrowseSessionId ]: The unique identifier of oneDriveForBusinessBrowseSession + [OneDriveForBusinessProtectionPolicyId ]: The unique identifier of oneDriveForBusinessProtectionPolicy + [OneDriveForBusinessRestoreSessionId ]: The unique identifier of oneDriveForBusinessRestoreSession + [ProtectionPolicyBaseId ]: The unique identifier of protectionPolicyBase + [ProtectionUnitBaseId ]: The unique identifier of protectionUnitBase + [RestorePointId ]: The unique identifier of restorePoint + [RestoreSessionBaseId ]: The unique identifier of restoreSessionBase + [ServiceAppId ]: The unique identifier of serviceApp + [SharePointBrowseSessionId ]: The unique identifier of sharePointBrowseSession + [SharePointProtectionPolicyId ]: The unique identifier of sharePointProtectionPolicy + [SharePointRestoreSessionId ]: The unique identifier of sharePointRestoreSession + [SiteProtectionRuleId ]: The unique identifier of siteProtectionRule + [SiteProtectionUnitId ]: The unique identifier of siteProtectionUnit + [SiteProtectionUnitsBulkAdditionJobId ]: The unique identifier of siteProtectionUnitsBulkAdditionJob + [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact + [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifact) +- [](https://learn.microsoft.com/graph/api/sharepointrestoresession-list-granularsiterestoreartifacts?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md new file mode 100644 index 0000000000000..e991c0d444d69 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md @@ -0,0 +1,383 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifactcount +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount +--- + +# Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount + +## SYNOPSIS + +Get the number of the resource + +## SYNTAX + +### Get (Default) + +``` +Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount + -SharePointRestoreSessionId [-Filter ] [-Search ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] +``` + +### GetViaIdentity + +``` +Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount + -InputObject [-Filter ] [-Search ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Get the number of the resource + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Filter + +Filter items by property values + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: GetViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Search + +Search items by search phrases + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -SharePointRestoreSessionId + +The unique identifier of sharePointRestoreSession + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Get + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### System.Int32 + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [BrowseSessionBaseId ]: The unique identifier of browseSessionBase + [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule + [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit + [DriveProtectionUnitsBulkAdditionJobId ]: The unique identifier of driveProtectionUnitsBulkAdditionJob + [DriveRestoreArtifactId ]: The unique identifier of driveRestoreArtifact + [DriveRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of driveRestoreArtifactsBulkAdditionRequest + [ExchangeProtectionPolicyId ]: The unique identifier of exchangeProtectionPolicy + [ExchangeRestoreSessionId ]: The unique identifier of exchangeRestoreSession + [GranularDriveRestoreArtifactId ]: The unique identifier of granularDriveRestoreArtifact + [GranularMailboxRestoreArtifactId ]: The unique identifier of granularMailboxRestoreArtifact + [GranularSiteRestoreArtifactId ]: The unique identifier of granularSiteRestoreArtifact + [MailboxProtectionRuleId ]: The unique identifier of mailboxProtectionRule + [MailboxProtectionUnitId ]: The unique identifier of mailboxProtectionUnit + [MailboxProtectionUnitsBulkAdditionJobId ]: The unique identifier of mailboxProtectionUnitsBulkAdditionJob + [MailboxRestoreArtifactId ]: The unique identifier of mailboxRestoreArtifact + [MailboxRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of mailboxRestoreArtifactsBulkAdditionRequest + [NextFetchToken ]: Usage: nextFetchToken='{nextFetchToken}' + [OneDriveForBusinessBrowseSessionId ]: The unique identifier of oneDriveForBusinessBrowseSession + [OneDriveForBusinessProtectionPolicyId ]: The unique identifier of oneDriveForBusinessProtectionPolicy + [OneDriveForBusinessRestoreSessionId ]: The unique identifier of oneDriveForBusinessRestoreSession + [ProtectionPolicyBaseId ]: The unique identifier of protectionPolicyBase + [ProtectionUnitBaseId ]: The unique identifier of protectionUnitBase + [RestorePointId ]: The unique identifier of restorePoint + [RestoreSessionBaseId ]: The unique identifier of restoreSessionBase + [ServiceAppId ]: The unique identifier of serviceApp + [SharePointBrowseSessionId ]: The unique identifier of sharePointBrowseSession + [SharePointProtectionPolicyId ]: The unique identifier of sharePointProtectionPolicy + [SharePointRestoreSessionId ]: The unique identifier of sharePointRestoreSession + [SiteProtectionRuleId ]: The unique identifier of siteProtectionRule + [SiteProtectionUnitId ]: The unique identifier of siteProtectionUnit + [SiteProtectionUnitsBulkAdditionJobId ]: The unique identifier of siteProtectionUnitsBulkAdditionJob + [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact + [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifactcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md index 4080e544b35d1..a2a65f2dc21bc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact A collection of restore points and destination details that can be used to restore SharePoint sites. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +36,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact -SharePointRestoreSessionId -SiteRestoreArtifactId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +46,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -61,6 +58,16 @@ This cmdlet has the following aliases, A collection of restore points and destination details that can be used to restore SharePoint sites. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -548,7 +555,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -586,28 +593,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact) -- [Graph API Reference](https://learn.microsoft.com/graph/api/sharepointrestoresession-list-siterestoreartifacts?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact) +- [](https://learn.microsoft.com/graph/api/sharepointrestoresession-list-siterestoreartifacts?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md index 82967ee9bb792..0d378566ae3ca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBul Get a siteRestoreArtifactsBulkAdditionRequest object by its id, associated with a sharePointRestoreSession. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -29,7 +26,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditi [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +37,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditi [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +47,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditi -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -62,6 +59,16 @@ This cmdlet has the following aliases, Get a siteRestoreArtifactsBulkAdditionRequest object by its id, associated with a sharePointRestoreSession. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -549,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -587,29 +594,6 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest) -- [Graph API Reference](https://learn.microsoft.com/graph/api/siterestoreartifactsbulkadditionrequest-get?view=graph-rest-1.0) -- [Graph API Reference](https://learn.microsoft.com/graph/api/sharepointrestoresession-list-siterestoreartifactsbulkadditionrequests?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest) +- [](https://learn.microsoft.com/graph/api/siterestoreartifactsbulkadditionrequest-get?view=graph-rest-1.0) +- [](https://learn.microsoft.com/graph/api/sharepointrestoresession-list-siterestoreartifactsbulkadditionrequests?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount.md index 0e4c7efac57e5..cb465ba5d3b9a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequestcount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBul Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditi -SharePointRestoreSessionId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditi -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -335,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -373,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequestcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequestcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount.md index f4f8a806c1c1e..1ae8ee010e3ed 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactcount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCou Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount -SharePointRestoreSessionId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -335,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -373,27 +380,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint.md index 92e9108b79606..c692ccf227545 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactrestorepoint Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRes Represents the date and time when an artifact is protected by a protectionPolicy and can be restored. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -27,7 +24,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoi -SharePointRestoreSessionId -SiteRestoreArtifactId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +34,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoi -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -49,6 +46,16 @@ This cmdlet has the following aliases, Represents the date and time when an artifact is protected by a protectionPolicy and can be restored. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -358,7 +365,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -396,27 +403,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactrestorepoint) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactrestorepoint) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRule.md index 67a4f706cd887..a404689b49f55 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRule.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteinclusionrule Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSiteInclusionRule --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreSiteInclusionRule The list of site inclusion rules applied to the tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSiteInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSiteInclusionRule?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreSiteInclusionRule [-ExpandProperty ] [-Prop [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgSolutionBackupRestoreSiteInclusionRule -SiteProtectionRuleId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgSolutionBackupRestoreSiteInclusionRule -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, The list of site inclusion rules applied to the tenant. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -520,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -558,27 +565,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSiteInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteinclusionrule) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRuleCount.md index f97be8b67fff4..6e8b915a3062a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRuleCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteinclusionrulecount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSiteInclusionRuleCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreSiteInclusionRuleCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSiteInclusionRuleCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSiteInclusionRuleCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreSiteInclusionRuleCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSiteInclusionRuleCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteinclusionrulecount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteinclusionrulecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnit.md index 2c38a103709ec..bf7e1148b7914 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSiteProtectionUnit --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreSiteProtectionUnit The list of site protection units in the tenant. -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSiteProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSiteProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreSiteProtectionUnit [-ExpandProperty ] [-Pro [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgSolutionBackupRestoreSiteProtectionUnit -SiteProtectionUnitId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgSolutionBackupRestoreSiteProtectionUnit -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, The list of site protection units in the tenant. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -520,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -558,27 +565,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSiteProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunit) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md index 5926c1bd1c081..63729623362ab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob Get siteProtectionUnitsBulkAdditionJobs from solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob?view=graph-powershell-beta) - ## SYNTAX ### List (Default) @@ -28,7 +25,7 @@ Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +35,7 @@ Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob -SiteProtectionUnitsBulkAdditionJobId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +45,7 @@ Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -60,6 +57,16 @@ This cmdlet has the following aliases, Get siteProtectionUnitsBulkAdditionJobs from solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -All @@ -520,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -558,27 +565,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.md index a8ad7fa8ac852..9f1514884c64d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunitbulkadditionjobcount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunitbulkadditionjobcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunitbulkadditionjobcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitCount.md index 31215d4bd4dfa..2751d1bef5b35 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitCount.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunitcount Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Get-MgSolutionBackupRestoreSiteProtectionUnitCount --- @@ -15,9 +15,6 @@ title: Get-MgSolutionBackupRestoreSiteProtectionUnitCount Get the number of the resource -> [!NOTE] -> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSiteProtectionUnitCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSiteProtectionUnitCount?view=graph-powershell-beta) - ## SYNTAX ### Get (Default) @@ -26,7 +23,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreSiteProtectionUnitCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES @@ -38,6 +35,16 @@ This cmdlet has the following aliases, Get the number of the resource +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -274,27 +281,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Get-MgSolutionBackupRestoreSiteProtectionUnitCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunitcount) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunitcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreProtectionPolicy.md index a4334e1060258..c0590587f5558 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreProtectionPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/initialize-mgsolutionbackuprestoreprotectionpolicy Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Initialize-MgSolutionBackupRestoreProtectionPolicy --- @@ -17,9 +17,6 @@ Activate a protectionPolicyBase. Currently, only one active backup policy per underlying service is supported (that is, one for OneDrive accounts, one for SharePoint sites, and one for Exchange Online users). You can add or remove artifacts (sites or user accounts) to or from each active policy. -> [!NOTE] -> To view the beta release of this cmdlet, view [Initialize-MgBetaSolutionBackupRestoreProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Initialize-MgBetaSolutionBackupRestoreProtectionPolicy?view=graph-powershell-beta) - ## SYNTAX ### Activate (Default) @@ -29,7 +26,6 @@ Initialize-MgSolutionBackupRestoreProtectionPolicy -ProtectionPolicyBaseId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ActivateViaIdentity @@ -39,7 +35,6 @@ Initialize-MgSolutionBackupRestoreProtectionPolicy -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,6 +48,16 @@ Activate a protectionPolicyBase. Currently, only one active backup policy per underlying service is supported (that is, one for OneDrive accounts, one for SharePoint sites, and one for Exchange Online users). You can add or remove artifacts (sites or user accounts) to or from each active policy. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -341,7 +346,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -379,28 +384,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Initialize-MgSolutionBackupRestoreProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/initialize-mgsolutionbackuprestoreprotectionpolicy) -- [Graph API Reference](https://learn.microsoft.com/graph/api/protectionpolicybase-activate?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/initialize-mgsolutionbackuprestoreprotectionpolicy) +- [](https://learn.microsoft.com/graph/api/protectionpolicybase-activate?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md index 32a957611af56..031a3c38fc56e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/initialize-mgsolutionbackuprestoreserviceapp Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Initialize-MgSolutionBackupRestoreServiceApp --- @@ -15,9 +15,6 @@ title: Initialize-MgSolutionBackupRestoreServiceApp Activate a serviceApp. -> [!NOTE] -> To view the beta release of this cmdlet, view [Initialize-MgBetaSolutionBackupRestoreServiceApp](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Initialize-MgBetaSolutionBackupRestoreServiceApp?view=graph-powershell-beta) - ## SYNTAX ### ActivateExpanded (Default) @@ -28,7 +25,6 @@ Initialize-MgSolutionBackupRestoreServiceApp -ServiceAppId [-EffectiveDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Activate @@ -39,7 +35,6 @@ Initialize-MgSolutionBackupRestoreServiceApp -ServiceAppId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ActivateViaIdentityExpanded @@ -50,7 +45,6 @@ Initialize-MgSolutionBackupRestoreServiceApp -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ActivateViaIdentity @@ -61,7 +55,6 @@ Initialize-MgSolutionBackupRestoreServiceApp -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -73,6 +66,16 @@ This cmdlet has the following aliases, Activate a serviceApp. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -104,7 +107,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -175,7 +178,7 @@ HelpMessage: '' ### -EffectiveDateTime - +. ```yaml Type: System.DateTime @@ -459,11 +462,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [EffectiveDateTime ]: -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -501,28 +504,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Initialize-MgSolutionBackupRestoreServiceApp](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/initialize-mgsolutionbackuprestoreserviceapp) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceapp-activate?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/initialize-mgsolutionbackuprestoreserviceapp) +- [](https://learn.microsoft.com/graph/api/serviceapp-activate?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreSession.md index 6f50a2a8e4318..efe4dc05ac1f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/initialize-mgsolutionbackuprestoresession Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Initialize-MgSolutionBackupRestoreSession --- @@ -16,9 +16,6 @@ title: Initialize-MgSolutionBackupRestoreSession Activate a draft restoreSessionBase object. The following points apply to restoring a protection unit: -> [!NOTE] -> To view the beta release of this cmdlet, view [Initialize-MgBetaSolutionBackupRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Initialize-MgBetaSolutionBackupRestoreSession?view=graph-powershell-beta) - ## SYNTAX ### Activate (Default) @@ -28,7 +25,6 @@ Initialize-MgSolutionBackupRestoreSession -RestoreSessionBaseId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ActivateViaIdentity @@ -38,7 +34,6 @@ Initialize-MgSolutionBackupRestoreSession -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Activate a draft restoreSessionBase object. The following points apply to restoring a protection unit: +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -339,7 +344,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -377,28 +382,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Initialize-MgSolutionBackupRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/initialize-mgsolutionbackuprestoresession) -- [Graph API Reference](https://learn.microsoft.com/graph/api/restoresessionbase-activate?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/initialize-mgsolutionbackuprestoresession) +- [](https://learn.microsoft.com/graph/api/restoresessionbase-activate?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md new file mode 100644 index 0000000000000..061ae9b6b7920 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md @@ -0,0 +1,791 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgbrowsesolutionbackuprestorebrowsesession +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Invoke-MgBrowseSolutionBackupRestoreBrowseSession +--- + +# Invoke-MgBrowseSolutionBackupRestoreBrowseSession + +## SYNOPSIS + +Invoke action browse + +## SYNTAX + +### BrowseExpanded (Default) + +``` +Invoke-MgBrowseSolutionBackupRestoreBrowseSession -BrowseSessionBaseId [-Filter ] + [-ResponseHeadersVariable ] [-AdditionalProperties ] + [-BrowseLocationItemKey ] [-BrowseResourceType ] [-Sort ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### Browse1 + +``` +Invoke-MgBrowseSolutionBackupRestoreBrowseSession -BrowseSessionBaseId + -NextFetchToken [-Count] [-Filter ] [-Search ] [-Skip ] [-Top ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### Browse + +``` +Invoke-MgBrowseSolutionBackupRestoreBrowseSession -BrowseSessionBaseId + -Body + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### BrowseViaIdentityExpanded + +``` +Invoke-MgBrowseSolutionBackupRestoreBrowseSession -InputObject + [-Filter ] [-ResponseHeadersVariable ] [-AdditionalProperties ] + [-BrowseLocationItemKey ] [-BrowseResourceType ] [-Sort ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### BrowseViaIdentity1 + +``` +Invoke-MgBrowseSolutionBackupRestoreBrowseSession -InputObject [-Count] + [-Filter ] [-Search ] [-Skip ] [-Top ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### BrowseViaIdentity + +``` +Invoke-MgBrowseSolutionBackupRestoreBrowseSession -InputObject + -BodyParameter + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Invoke action browse + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -AdditionalProperties + +Additional Parameters + +```yaml +Type: System.Collections.Hashtable +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: BrowseViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: BrowseExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Body + +. +To construct, see NOTES section for BODY properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IPathsViqi8KSolutionsBackuprestoreBrowsesessionsBrowsesessionbaseIdMicrosoftGraphBrowsePostRequestbodyContentApplicationJsonSchema +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Browse + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BodyParameter + +. +To construct, see NOTES section for BODYPARAMETER properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IPathsViqi8KSolutionsBackuprestoreBrowsesessionsBrowsesessionbaseIdMicrosoftGraphBrowsePostRequestbodyContentApplicationJsonSchema +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: BrowseViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BrowseLocationItemKey + +. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: BrowseViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: BrowseExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BrowseResourceType + +browsableResourceType + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: BrowseViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: BrowseExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BrowseSessionBaseId + +The unique identifier of browseSessionBase + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: BrowseExpanded + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Browse1 + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Browse + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- cf +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Count + +Include count of items + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: BrowseViaIdentity1 + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Browse1 + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Filter + +Filter items by property values + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: BrowseViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: BrowseViaIdentity1 + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: BrowseExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Browse1 + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: BrowseViaIdentityExpanded + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: BrowseViaIdentity1 + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: BrowseViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -NextFetchToken + +Usage: nextFetchToken='{nextFetchToken}' + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Browse1 + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Search + +Search items by search phrases + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: BrowseViaIdentity1 + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Browse1 + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Skip + +Skip the first n items + +```yaml +Type: System.Int32 +DefaultValue: 0 +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: BrowseViaIdentity1 + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Browse1 + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Sort + +browseQueryOrder + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- OrderBy +ParameterSets: +- Name: BrowseViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: BrowseExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Top + +Show only the first n items + +```yaml +Type: System.Int32 +DefaultValue: 0 +SupportsWildcards: false +Aliases: +- Limit +ParameterSets: +- Name: BrowseViaIdentity1 + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Browse1 + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WhatIf + +Runs the command in a mode that only reports what would happen without performing the actions. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- wi +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity + +{{ Fill in the Description }} + +### Microsoft.Graph.PowerShell.Models.IPathsViqi8KSolutionsBackuprestoreBrowsesessionsBrowsesessionbaseIdMicrosoftGraphBrowsePostRequestbodyContentApplicationJsonSchema + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphBrowseQueryResponseItem + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +BODY : . + [(Any) ]: This indicates any property can be added to this object. + [BrowseLocationItemKey ]: + [BrowseResourceType ]: browsableResourceType + [Filter ]: + [OrderBy ]: browseQueryOrder + +BODYPARAMETER : . + [(Any) ]: This indicates any property can be added to this object. + [BrowseLocationItemKey ]: + [BrowseResourceType ]: browsableResourceType + [Filter ]: + [OrderBy ]: browseQueryOrder + +INPUTOBJECT : Identity Parameter + [BrowseSessionBaseId ]: The unique identifier of browseSessionBase + [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule + [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit + [DriveProtectionUnitsBulkAdditionJobId ]: The unique identifier of driveProtectionUnitsBulkAdditionJob + [DriveRestoreArtifactId ]: The unique identifier of driveRestoreArtifact + [DriveRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of driveRestoreArtifactsBulkAdditionRequest + [ExchangeProtectionPolicyId ]: The unique identifier of exchangeProtectionPolicy + [ExchangeRestoreSessionId ]: The unique identifier of exchangeRestoreSession + [GranularDriveRestoreArtifactId ]: The unique identifier of granularDriveRestoreArtifact + [GranularMailboxRestoreArtifactId ]: The unique identifier of granularMailboxRestoreArtifact + [GranularSiteRestoreArtifactId ]: The unique identifier of granularSiteRestoreArtifact + [MailboxProtectionRuleId ]: The unique identifier of mailboxProtectionRule + [MailboxProtectionUnitId ]: The unique identifier of mailboxProtectionUnit + [MailboxProtectionUnitsBulkAdditionJobId ]: The unique identifier of mailboxProtectionUnitsBulkAdditionJob + [MailboxRestoreArtifactId ]: The unique identifier of mailboxRestoreArtifact + [MailboxRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of mailboxRestoreArtifactsBulkAdditionRequest + [NextFetchToken ]: Usage: nextFetchToken='{nextFetchToken}' + [OneDriveForBusinessBrowseSessionId ]: The unique identifier of oneDriveForBusinessBrowseSession + [OneDriveForBusinessProtectionPolicyId ]: The unique identifier of oneDriveForBusinessProtectionPolicy + [OneDriveForBusinessRestoreSessionId ]: The unique identifier of oneDriveForBusinessRestoreSession + [ProtectionPolicyBaseId ]: The unique identifier of protectionPolicyBase + [ProtectionUnitBaseId ]: The unique identifier of protectionUnitBase + [RestorePointId ]: The unique identifier of restorePoint + [RestoreSessionBaseId ]: The unique identifier of restoreSessionBase + [ServiceAppId ]: The unique identifier of serviceApp + [SharePointBrowseSessionId ]: The unique identifier of sharePointBrowseSession + [SharePointProtectionPolicyId ]: The unique identifier of sharePointProtectionPolicy + [SharePointRestoreSessionId ]: The unique identifier of sharePointRestoreSession + [SiteProtectionRuleId ]: The unique identifier of siteProtectionRule + [SiteProtectionUnitId ]: The unique identifier of siteProtectionUnit + [SiteProtectionUnitsBulkAdditionJobId ]: The unique identifier of siteProtectionUnitsBulkAdditionJob + [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact + [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgbrowsesolutionbackuprestorebrowsesession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md index bd17766698ecf..e45243701ebf5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgdeactivatesolutionbackuprestoreprotectionpolicy Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy --- @@ -19,9 +19,6 @@ Any backups taken before deactivation are retained according to the retention po You can restore data using previous restore points even after deactivation. To reactivate a deactivated policy, use the activate API. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaDeactivateSolutionBackupRestoreProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Invoke-MgBetaDeactivateSolutionBackupRestoreProtectionPolicy?view=graph-powershell-beta) - ## SYNTAX ### Deactivate (Default) @@ -31,7 +28,6 @@ Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy -ProtectionPolicyBaseId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeactivateViaIdentity @@ -41,7 +37,6 @@ Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -57,6 +52,16 @@ Any backups taken before deactivation are retained according to the retention po You can restore data using previous restore points even after deactivation. To reactivate a deactivated policy, use the activate API. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -345,7 +350,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -383,28 +388,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgdeactivatesolutionbackuprestoreprotectionpolicy) -- [Graph API Reference](https://learn.microsoft.com/graph/api/protectionpolicybase-deactivate?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgdeactivatesolutionbackuprestoreprotectionpolicy) +- [](https://learn.microsoft.com/graph/api/protectionpolicybase-deactivate?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md index 1e202a9ad73ae..451eeb41703bd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgdeactivatesolutionbackuprestoreserviceapp Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgDeactivateSolutionBackupRestoreServiceApp --- @@ -15,9 +15,6 @@ title: Invoke-MgDeactivateSolutionBackupRestoreServiceApp Deactivate a serviceApp. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaDeactivateSolutionBackupRestoreServiceApp](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Invoke-MgBetaDeactivateSolutionBackupRestoreServiceApp?view=graph-powershell-beta) - ## SYNTAX ### Deactivate (Default) @@ -27,7 +24,6 @@ Invoke-MgDeactivateSolutionBackupRestoreServiceApp -ServiceAppId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeactivateViaIdentity @@ -37,7 +33,6 @@ Invoke-MgDeactivateSolutionBackupRestoreServiceApp -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Deactivate a serviceApp. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -337,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -375,28 +380,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgDeactivateSolutionBackupRestoreServiceApp](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgdeactivatesolutionbackuprestoreserviceapp) -- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceapp-deactivate?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgdeactivatesolutionbackuprestoreserviceapp) +- [](https://learn.microsoft.com/graph/api/serviceapp-deactivate?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md index 45b12bc2e92a2..6e70f7a408935 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgoffboardsolutionbackuprestoreprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Invoke-MgOffboardSolutionBackupRestoreProtectionUnit --- @@ -15,9 +15,6 @@ title: Invoke-MgOffboardSolutionBackupRestoreProtectionUnit Offboard a protectionUnitBase. -> [!NOTE] -> To view the beta release of this cmdlet, view [Invoke-MgBetaOffboardSolutionBackupRestoreProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Invoke-MgBetaOffboardSolutionBackupRestoreProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### Offboard (Default) @@ -27,7 +24,6 @@ Invoke-MgOffboardSolutionBackupRestoreProtectionUnit -ProtectionUnitBaseId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### OffboardViaIdentity @@ -37,7 +33,6 @@ Invoke-MgOffboardSolutionBackupRestoreProtectionUnit -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Offboard a protectionUnitBase. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -337,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -375,28 +380,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Invoke-MgOffboardSolutionBackupRestoreProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgoffboardsolutionbackuprestoreprotectionunit) -- [Graph API Reference](https://learn.microsoft.com/graph/api/protectionunitbase-offboard?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgoffboardsolutionbackuprestoreprotectionunit) +- [](https://learn.microsoft.com/graph/api/protectionunitbase-offboard?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Microsoft.Graph.BackupRestore.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Microsoft.Graph.BackupRestore.md index 12f10da9e31c2..2706cc83a08c7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Microsoft.Graph.BackupRestore.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Microsoft.Graph.BackupRestore.md @@ -1,6 +1,6 @@ --- Module Name: Microsoft.Graph.BackupRestore -Module Guid: 69c7b1ff-6710-4f13-96e6-a599cbb4b55f +Module Guid: 301f02b8-6f83-4060-b20b-99dbe30b6cb9 Download Help Link: https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.backuprestore/?view=graph-powershell-1.0 Help Version: 1.0.0.0 Locale: en-US @@ -15,6 +15,12 @@ Microsoft Graph PowerShell Cmdlets ### [Get-MgSolutionBackupRestore](Get-MgSolutionBackupRestore.md) +### [Get-MgSolutionBackupRestoreBrowseSession](Get-MgSolutionBackupRestoreBrowseSession.md) + +### [Get-MgSolutionBackupRestoreBrowseSession](Get-MgSolutionBackupRestoreBrowseSession.md) + +### [Get-MgSolutionBackupRestoreBrowseSessionCount](Get-MgSolutionBackupRestoreBrowseSessionCount.md) + ### [Get-MgSolutionBackupRestoreDriveInclusionRule](Get-MgSolutionBackupRestoreDriveInclusionRule.md) ### [Get-MgSolutionBackupRestoreDriveInclusionRule](Get-MgSolutionBackupRestoreDriveInclusionRule.md) @@ -103,6 +109,12 @@ Microsoft Graph PowerShell Cmdlets ### [Get-MgSolutionBackupRestoreMailboxProtectionUnitCount](Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md) +### [Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession](Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md) + +### [Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession](Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md) + +### [Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount](Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md) + ### [Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy](Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md) ### [Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy](Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md) @@ -147,6 +159,12 @@ Microsoft Graph PowerShell Cmdlets ### [Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint](Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.md) +### [Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact](Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md) + +### [Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact](Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md) + +### [Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount](Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md) + ### [Get-MgSolutionBackupRestorePoint](Get-MgSolutionBackupRestorePoint.md) ### [Get-MgSolutionBackupRestorePoint](Get-MgSolutionBackupRestorePoint.md) @@ -197,6 +215,12 @@ Microsoft Graph PowerShell Cmdlets ### [Get-MgSolutionBackupRestoreSessionCount](Get-MgSolutionBackupRestoreSessionCount.md) +### [Get-MgSolutionBackupRestoreSharePointBrowseSession](Get-MgSolutionBackupRestoreSharePointBrowseSession.md) + +### [Get-MgSolutionBackupRestoreSharePointBrowseSession](Get-MgSolutionBackupRestoreSharePointBrowseSession.md) + +### [Get-MgSolutionBackupRestoreSharePointBrowseSessionCount](Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md) + ### [Get-MgSolutionBackupRestoreSharePointProtectionPolicy](Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md) ### [Get-MgSolutionBackupRestoreSharePointProtectionPolicy](Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md) @@ -227,6 +251,12 @@ Microsoft Graph PowerShell Cmdlets ### [Get-MgSolutionBackupRestoreSharePointRestoreSessionCount](Get-MgSolutionBackupRestoreSharePointRestoreSessionCount.md) +### [Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact](Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md) + +### [Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact](Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md) + +### [Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount](Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md) + ### [Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact](Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md) ### [Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact](Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md) @@ -265,12 +295,16 @@ Microsoft Graph PowerShell Cmdlets ### [Initialize-MgSolutionBackupRestoreSession](Initialize-MgSolutionBackupRestoreSession.md) +### [Invoke-MgBrowseSolutionBackupRestoreBrowseSession](Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md) + ### [Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy](Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md) ### [Invoke-MgDeactivateSolutionBackupRestoreServiceApp](Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md) ### [Invoke-MgOffboardSolutionBackupRestoreProtectionUnit](Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md) +### [New-MgSolutionBackupRestoreBrowseSession](New-MgSolutionBackupRestoreBrowseSession.md) + ### [New-MgSolutionBackupRestoreDriveInclusionRule](New-MgSolutionBackupRestoreDriveInclusionRule.md) ### [New-MgSolutionBackupRestoreDriveProtectionUnit](New-MgSolutionBackupRestoreDriveProtectionUnit.md) @@ -293,6 +327,8 @@ Microsoft Graph PowerShell Cmdlets ### [New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob](New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md) +### [New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession](New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md) + ### [New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy](New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md) ### [New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession](New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md) @@ -301,6 +337,8 @@ Microsoft Graph PowerShell Cmdlets ### [New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest](New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md) +### [New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact](New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md) + ### [New-MgSolutionBackupRestorePoint](New-MgSolutionBackupRestorePoint.md) ### [New-MgSolutionBackupRestoreProtectionPolicy](New-MgSolutionBackupRestoreProtectionPolicy.md) @@ -309,10 +347,14 @@ Microsoft Graph PowerShell Cmdlets ### [New-MgSolutionBackupRestoreSession](New-MgSolutionBackupRestoreSession.md) +### [New-MgSolutionBackupRestoreSharePointBrowseSession](New-MgSolutionBackupRestoreSharePointBrowseSession.md) + ### [New-MgSolutionBackupRestoreSharePointProtectionPolicy](New-MgSolutionBackupRestoreSharePointProtectionPolicy.md) ### [New-MgSolutionBackupRestoreSharePointRestoreSession](New-MgSolutionBackupRestoreSharePointRestoreSession.md) +### [New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact](New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md) + ### [New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact](New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md) ### [New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest](New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md) @@ -325,6 +367,8 @@ Microsoft Graph PowerShell Cmdlets ### [Remove-MgSolutionBackupRestore](Remove-MgSolutionBackupRestore.md) +### [Remove-MgSolutionBackupRestoreBrowseSession](Remove-MgSolutionBackupRestoreBrowseSession.md) + ### [Remove-MgSolutionBackupRestoreDriveInclusionRule](Remove-MgSolutionBackupRestoreDriveInclusionRule.md) ### [Remove-MgSolutionBackupRestoreDriveProtectionUnit](Remove-MgSolutionBackupRestoreDriveProtectionUnit.md) @@ -347,6 +391,8 @@ Microsoft Graph PowerShell Cmdlets ### [Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob](Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md) +### [Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession](Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md) + ### [Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy](Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md) ### [Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession](Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md) @@ -355,6 +401,8 @@ Microsoft Graph PowerShell Cmdlets ### [Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest](Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md) +### [Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact](Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md) + ### [Remove-MgSolutionBackupRestorePoint](Remove-MgSolutionBackupRestorePoint.md) ### [Remove-MgSolutionBackupRestoreProtectionPolicy](Remove-MgSolutionBackupRestoreProtectionPolicy.md) @@ -363,10 +411,14 @@ Microsoft Graph PowerShell Cmdlets ### [Remove-MgSolutionBackupRestoreSession](Remove-MgSolutionBackupRestoreSession.md) +### [Remove-MgSolutionBackupRestoreSharePointBrowseSession](Remove-MgSolutionBackupRestoreSharePointBrowseSession.md) + ### [Remove-MgSolutionBackupRestoreSharePointProtectionPolicy](Remove-MgSolutionBackupRestoreSharePointProtectionPolicy.md) ### [Remove-MgSolutionBackupRestoreSharePointRestoreSession](Remove-MgSolutionBackupRestoreSharePointRestoreSession.md) +### [Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact](Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md) + ### [Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact](Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md) ### [Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest](Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md) @@ -383,6 +435,8 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgSolutionBackupRestore](Update-MgSolutionBackupRestore.md) +### [Update-MgSolutionBackupRestoreBrowseSession](Update-MgSolutionBackupRestoreBrowseSession.md) + ### [Update-MgSolutionBackupRestoreDriveInclusionRule](Update-MgSolutionBackupRestoreDriveInclusionRule.md) ### [Update-MgSolutionBackupRestoreDriveProtectionUnit](Update-MgSolutionBackupRestoreDriveProtectionUnit.md) @@ -405,6 +459,8 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob](Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md) +### [Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession](Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md) + ### [Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy](Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md) ### [Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession](Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md) @@ -413,6 +469,8 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest](Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md) +### [Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact](Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md) + ### [Update-MgSolutionBackupRestorePoint](Update-MgSolutionBackupRestorePoint.md) ### [Update-MgSolutionBackupRestoreProtectionPolicy](Update-MgSolutionBackupRestoreProtectionPolicy.md) @@ -421,10 +479,14 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgSolutionBackupRestoreSession](Update-MgSolutionBackupRestoreSession.md) +### [Update-MgSolutionBackupRestoreSharePointBrowseSession](Update-MgSolutionBackupRestoreSharePointBrowseSession.md) + ### [Update-MgSolutionBackupRestoreSharePointProtectionPolicy](Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md) ### [Update-MgSolutionBackupRestoreSharePointRestoreSession](Update-MgSolutionBackupRestoreSharePointRestoreSession.md) +### [Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact](Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md) + ### [Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact](Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md) ### [Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest](Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md) @@ -435,22 +497,3 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob](Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md) - - - - - - - - - - - - - - - - - - - diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md new file mode 100644 index 0000000000000..aaeb2e7cf37be --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md @@ -0,0 +1,567 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestorebrowsesession +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: New-MgSolutionBackupRestoreBrowseSession +--- + +# New-MgSolutionBackupRestoreBrowseSession + +## SYNOPSIS + +Create new navigation property to browseSessions for solutions + +## SYNTAX + +### CreateExpanded (Default) + +``` +New-MgSolutionBackupRestoreBrowseSession [-ResponseHeadersVariable ] + [-AdditionalProperties ] [-BackupSizeInBytes ] [-CreatedDateTime ] + [-Error ] [-ExpirationDateTime ] [-Id ] + [-RestorePointDateTime ] [-RestorePointId ] [-Status ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### Create + +``` +New-MgSolutionBackupRestoreBrowseSession -BodyParameter + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Create new navigation property to browseSessions for solutions + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -AdditionalProperties + +Additional Parameters + +```yaml +Type: System.Collections.Hashtable +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BackupSizeInBytes + +The size of the backup in bytes. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BodyParameter + +browseSessionBase +To construct, see NOTES section for BODYPARAMETER properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphBrowseSessionBase +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Create + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- cf +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -CreatedDateTime + +The date and time when the browse session was created. +The timestamp type represents date and time information using ISO 8601 format and is always in UTC. +For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Error + +publicError +To construct, see NOTES section for ERROR properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphPublicError +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ExpirationDateTime + +The date and time after which the browse session is deleted automatically. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Id + +The unique identifier for an entity. +Read-only. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestorePointDateTime + +The date and time of the restore point on which the browse session is created. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestorePointId + +. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Status + +browseSessionStatus + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WhatIf + +Runs the command in a mode that only reports what would happen without performing the actions. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- wi +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphBrowseSessionBase + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphBrowseSessionBase + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +BODYPARAMETER : browseSessionBase + [(Any) ]: This indicates any property can be added to this object. + [Id ]: The unique identifier for an entity. +Read-only. + [BackupSizeInBytes ]: The size of the backup in bytes. + [CreatedDateTime ]: The date and time when the browse session was created. +The timestamp type represents date and time information using ISO 8601 format and is always in UTC. +For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + [Error ]: publicError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: Represents the error code. + [Details ]: Details of the error. + [Code ]: The error code. + [Message ]: The error message. + [Target ]: The target of the error. + [InnerError ]: publicInnerError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: The error code. + [Details ]: A collection of error details. + [Message ]: The error message. + [Target ]: The target of the error. + [Message ]: A non-localized message for the developer. + [Target ]: The target of the error. + [ExpirationDateTime ]: The date and time after which the browse session is deleted automatically. + [RestorePointDateTime ]: The date and time of the restore point on which the browse session is created. + [RestorePointId ]: + [Status ]: browseSessionStatus + +ERROR : publicError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: Represents the error code. + [Details ]: Details of the error. + [Code ]: The error code. + [Message ]: The error message. + [Target ]: The target of the error. + [InnerError ]: publicInnerError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: The error code. + [Details ]: A collection of error details. + [Message ]: The error message. + [Target ]: The target of the error. + [Message ]: A non-localized message for the developer. + [Target ]: The target of the error. + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestorebrowsesession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveInclusionRule.md index fa41fdaac34f6..a118656d099d0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveInclusionRule.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoredriveinclusionrule Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreDriveInclusionRule --- @@ -15,9 +15,6 @@ title: New-MgSolutionBackupRestoreDriveInclusionRule Create new navigation property to driveInclusionRules for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreDriveInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreDriveInclusionRule?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,6 @@ New-MgSolutionBackupRestoreDriveInclusionRule [-ResponseHeadersVariable [-LastModifiedDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +36,6 @@ New-MgSolutionBackupRestoreDriveInclusionRule -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,6 +47,16 @@ This cmdlet has the following aliases, Create new navigation property to driveInclusionRules for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -534,7 +539,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: driveProtectionRule +BODYPARAMETER : driveProtectionRule [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -571,7 +576,7 @@ Read-only. [DriveExpression ]: Contains a drive expression. For examples, see driveExpression examples. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -582,7 +587,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -598,7 +603,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -612,27 +617,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgSolutionBackupRestoreDriveInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoredriveinclusionrule) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoredriveinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnit.md index 528e976c1caa7..278406132a4ca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoredriveprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreDriveProtectionUnit --- @@ -15,9 +15,6 @@ title: New-MgSolutionBackupRestoreDriveProtectionUnit Create new navigation property to driveProtectionUnits for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreDriveProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreDriveProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgSolutionBackupRestoreDriveProtectionUnit [-ResponseHeadersVariable ] [-PolicyId ] [-ProtectionSources ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,6 @@ New-MgSolutionBackupRestoreDriveProtectionUnit -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,6 +48,16 @@ This cmdlet has the following aliases, Create new navigation property to driveProtectionUnits for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -581,7 +587,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: driveProtectionUnit +BODYPARAMETER : driveProtectionUnit [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -625,7 +631,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [DirectoryObjectId ]: ID of the directory object. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -636,7 +642,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -652,7 +658,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -666,27 +672,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgSolutionBackupRestoreDriveProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoredriveprotectionunit) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoredriveprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md index 170cc6728c477..4da44ba742158 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob --- @@ -15,9 +15,6 @@ title: New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob Create new navigation property to driveProtectionUnitsBulkAdditionJobs for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob [-ResponseHeadersV [-LastModifiedBy ] [-LastModifiedDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +38,6 @@ New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,6 +49,16 @@ This cmdlet has the following aliases, Create new navigation property to driveProtectionUnitsBulkAdditionJobs for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -555,7 +561,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: driveProtectionUnitsBulkAdditionJob +BODYPARAMETER : driveProtectionUnitsBulkAdditionJob [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -592,7 +598,7 @@ Read-only. [DirectoryObjectIds ]: The list of OneDrive directoryObjectIds to add to the OneDrive protection policy. [Drives ]: The list of email addresses to add to the OneDrive protection policy. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -603,7 +609,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -619,7 +625,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -633,27 +639,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md index 5aefedcb1f4d4..5479184cae809 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangeprotectionpolicy Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreExchangeProtectionPolicy --- @@ -17,9 +17,6 @@ Create a protection policy for the Exchange service in a Microsoft 365 tenant. The policy is set to inactive when it is created. Users can also provide a list of protection units under the policy. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreExchangeProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreExchangeProtectionPolicy?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -36,7 +33,7 @@ New-MgSolutionBackupRestoreExchangeProtectionPolicy [-ResponseHeadersVariable ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -46,7 +43,7 @@ New-MgSolutionBackupRestoreExchangeProtectionPolicy -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -60,6 +57,16 @@ Create a protection policy for the Exchange service in a Microsoft 365 tenant. The policy is set to inactive when it is created. Users can also provide a list of protection units under the policy. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -299,7 +306,7 @@ HelpMessage: '' ### -IsEnabled - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -407,7 +414,7 @@ HelpMessage: '' ### -MailboxProtectionUnitsBulkAdditionJobs - +. To construct, see NOTES section for MAILBOXPROTECTIONUNITSBULKADDITIONJOBS properties and create a hash table. ```yaml @@ -629,7 +636,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: exchangeProtectionPolicy +BODYPARAMETER : exchangeProtectionPolicy [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -716,7 +723,7 @@ Read-only. [DirectoryObjectIds ]: The list of Exchange directoryObjectIds to add to the Exchange protection policy. [Mailboxes ]: The list of Exchange email addresses to add to the Exchange protection policy. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -727,7 +734,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -853,7 +860,7 @@ Read-only. [DirectoryObjectIds ]: The list of Exchange directoryObjectIds to add to the Exchange protection policy. [Mailboxes ]: The list of Exchange email addresses to add to the Exchange protection policy. -PROTECTIONPOLICYARTIFACTCOUNT ``: protectionPolicyArtifactCount +PROTECTIONPOLICYARTIFACTCOUNT : protectionPolicyArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: [Failed ]: @@ -867,28 +874,5 @@ RETENTIONSETTINGS : Contains the retention se ## RELATED LINKS -- [New-MgSolutionBackupRestoreExchangeProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangeprotectionpolicy) -- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-post-exchangeprotectionpolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangeprotectionpolicy) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-exchangeprotectionpolicies?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md index cff1aeb9b0f03..ca433584fa0d5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresession Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreExchangeRestoreSession --- @@ -15,9 +15,6 @@ title: New-MgSolutionBackupRestoreExchangeRestoreSession Create a new exchangeRestoreSession object. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreExchangeRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreExchangeRestoreSession?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -35,7 +32,7 @@ New-MgSolutionBackupRestoreExchangeRestoreSession [-ResponseHeadersVariable ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -45,7 +42,7 @@ New-MgSolutionBackupRestoreExchangeRestoreSession -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -57,6 +54,16 @@ This cmdlet has the following aliases, Create a new exchangeRestoreSession object. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -233,7 +240,7 @@ HelpMessage: '' ### -GranularMailboxRestoreArtifacts - +. To construct, see NOTES section for GRANULARMAILBOXRESTOREARTIFACTS properties and create a hash table. ```yaml @@ -626,7 +633,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: exchangeRestoreSession +BODYPARAMETER : exchangeRestoreSession [(Any) ]: This indicates any property can be added to this object. [CompletedDateTime ]: The time of completion of the restore session. [CreatedBy ]: identitySet @@ -740,7 +747,7 @@ Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding Exchange restore session in a bulk operation. [Mailboxes ]: The list of email addresses that are added to the corresponding Exchange restore session in a bulk operation. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -751,7 +758,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -830,7 +837,7 @@ Read-only. Don't use. [SearchResponseId ]: . -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -947,7 +954,7 @@ Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding Exchange restore session in a bulk operation. [Mailboxes ]: The list of email addresses that are added to the corresponding Exchange restore session in a bulk operation. -RESTORESESSIONARTIFACTCOUNT ``: restoreSessionArtifactCount +RESTORESESSIONARTIFACTCOUNT : restoreSessionArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: The number of artifacts whose restoration completed. [Failed ]: The number of artifacts whose restoration failed. @@ -957,28 +964,5 @@ RESTORESESSIONARTIFACTCOUNT ``: rest ## RELATED LINKS -- [New-MgSolutionBackupRestoreExchangeRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresession) -- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-post-exchangerestoresessions?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresession) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-exchangerestoresessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index aca58fa913797..3d09bedd1bb9f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact --- @@ -15,9 +15,6 @@ title: New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreAr Create new navigation property to granularMailboxRestoreArtifacts for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -31,7 +28,7 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact [-RestoredItemCount ] [-SearchResponseId ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -42,7 +39,6 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -56,7 +52,7 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact [-RestoredItemCount ] [-SearchResponseId ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -67,7 +63,7 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -79,6 +75,16 @@ This cmdlet has the following aliases, Create new navigation property to granularMailboxRestoreArtifacts for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -604,7 +610,7 @@ HelpMessage: '' ### -SearchResponseId - +. ```yaml Type: System.String @@ -739,7 +745,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: granularMailboxRestoreArtifact +BODYPARAMETER : granularMailboxRestoreArtifact [(Any) ]: This indicates any property can be added to this object. [RestoredFolderId ]: The new restored folder identifier for the user. [RestoredItemCount ]: The number of items that are being restored in the folder. @@ -803,7 +809,7 @@ Read-only. Don't use. [SearchResponseId ]: . -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -819,7 +825,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -854,7 +860,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -RESTOREPOINT ``: restorePoint +RESTOREPOINT : restorePoint [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -907,27 +913,4 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS -- [New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md index c5e90a8583399..d087a9c8ca5c4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact --- @@ -15,9 +15,6 @@ title: New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact Create new navigation property to mailboxRestoreArtifacts for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact [-RestoredFolderId ] [-RestoredItemCount ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +38,6 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -54,7 +50,7 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact [-RestoredFolderId ] [-RestoredItemCount ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -65,7 +61,6 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,6 +72,16 @@ This cmdlet has the following aliases, Create new navigation property to mailboxRestoreArtifacts for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -682,7 +687,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: mailboxRestoreArtifact +BODYPARAMETER : mailboxRestoreArtifact [(Any) ]: This indicates any property can be added to this object. [CompletionDateTime ]: The time when restoration of restore artifact is completed. [DestinationType ]: destinationType @@ -743,7 +748,7 @@ Read-only. [RestoredFolderId ]: The new restored folder identifier for the user. [RestoredItemCount ]: The number of items that are being restored in the folder. -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -759,7 +764,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -794,7 +799,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -RESTOREPOINT ``: restorePoint +RESTOREPOINT : restorePoint [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -847,27 +852,4 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS -- [New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md index 070c6731476fc..a256a3c48ca3f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest --- @@ -16,9 +16,6 @@ title: New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBu Create a new mailboxRestoreArtifactsBulkAdditionRequest object associated with an exchangeRestoreSession. The following steps describe how to create and manage an exchangeRestoreSession with bulk artifact additions: -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -34,7 +31,7 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAddit [-ProtectionUnitIds ] [-RestorePointPreference ] [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -46,7 +43,6 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAddit [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -62,7 +58,7 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAddit [-ProtectionUnitIds ] [-RestorePointPreference ] [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -74,7 +70,6 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAddit [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -87,6 +82,16 @@ This cmdlet has the following aliases, Create a new mailboxRestoreArtifactsBulkAdditionRequest object associated with an exchangeRestoreSession. The following steps describe how to create and manage an exchangeRestoreSession with bulk artifact additions: +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -858,7 +863,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: mailboxRestoreArtifactsBulkAdditionRequest +BODYPARAMETER : mailboxRestoreArtifactsBulkAdditionRequest [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -905,7 +910,7 @@ Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding Exchange restore session in a bulk operation. [Mailboxes ]: The list of email addresses that are added to the corresponding Exchange restore session in a bulk operation. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -916,7 +921,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -932,7 +937,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -967,7 +972,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -978,7 +983,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONTIMEPERIOD ``: timePeriod +PROTECTIONTIMEPERIOD : timePeriod [(Any) ]: This indicates any property can be added to this object. [EndDateTime ]: The date time of the end of the time period. [StartDateTime ]: The date time of the start of the time period. @@ -986,28 +991,5 @@ PROTECTIONTIMEPERIOD ``: timePeriod ## RELATED LINKS -- [New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest) -- [Graph API Reference](https://learn.microsoft.com/graph/api/exchangerestoresession-post-mailboxrestoreartifactsbulkadditionrequests?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest) +- [](https://learn.microsoft.com/graph/api/exchangerestoresession-post-mailboxrestoreartifactsbulkadditionrequests?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxInclusionRule.md index 62c0665fa4148..65605d48836b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxInclusionRule.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoremailboxinclusionrule Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreMailboxInclusionRule --- @@ -15,9 +15,6 @@ title: New-MgSolutionBackupRestoreMailboxInclusionRule Create new navigation property to mailboxInclusionRules for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreMailboxInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreMailboxInclusionRule?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgSolutionBackupRestoreMailboxInclusionRule [-ResponseHeadersVariable ] [-MailboxExpression ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,7 @@ New-MgSolutionBackupRestoreMailboxInclusionRule -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -52,6 +49,16 @@ This cmdlet has the following aliases, Create new navigation property to mailboxInclusionRules for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -534,7 +541,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: mailboxProtectionRule +BODYPARAMETER : mailboxProtectionRule [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -571,7 +578,7 @@ Read-only. [MailboxExpression ]: Contains a mailbox expression. For examples, see mailboxExpression examples. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -582,7 +589,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -598,7 +605,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -612,27 +619,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgSolutionBackupRestoreMailboxInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoremailboxinclusionrule) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoremailboxinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnit.md index bfdd7658a0730..603b2183555be 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoremailboxprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreMailboxProtectionUnit --- @@ -15,9 +15,6 @@ title: New-MgSolutionBackupRestoreMailboxProtectionUnit Create new navigation property to mailboxProtectionUnits for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreMailboxProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreMailboxProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgSolutionBackupRestoreMailboxProtectionUnit [-ResponseHeadersVariable ] [-PolicyId ] [-ProtectionSources ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,7 @@ New-MgSolutionBackupRestoreMailboxProtectionUnit -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -52,6 +49,16 @@ This cmdlet has the following aliases, Create new navigation property to mailboxProtectionUnits for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -581,7 +588,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: mailboxProtectionUnit +BODYPARAMETER : mailboxProtectionUnit [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -625,7 +632,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [DirectoryObjectId ]: The ID of the directory object. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -636,7 +643,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -652,7 +659,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -666,27 +673,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgSolutionBackupRestoreMailboxProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoremailboxprotectionunit) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoremailboxprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md index aa3d469303edc..11926390c5a40 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob --- @@ -15,9 +15,6 @@ title: New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob Create new navigation property to mailboxProtectionUnitsBulkAdditionJobs for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob [-ResponseHeader [-LastModifiedDateTime ] [-Mailboxes ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +38,6 @@ New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,6 +49,16 @@ This cmdlet has the following aliases, Create new navigation property to mailboxProtectionUnitsBulkAdditionJobs for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -555,7 +561,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: mailboxProtectionUnitsBulkAdditionJob +BODYPARAMETER : mailboxProtectionUnitsBulkAdditionJob [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -592,7 +598,7 @@ Read-only. [DirectoryObjectIds ]: The list of Exchange directoryObjectIds to add to the Exchange protection policy. [Mailboxes ]: The list of Exchange email addresses to add to the Exchange protection policy. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -603,7 +609,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -619,7 +625,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -633,27 +639,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md new file mode 100644 index 0000000000000..62a8c515249e5 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -0,0 +1,591 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessbrowsesession +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession +--- + +# New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession + +## SYNOPSIS + +Create a new oneDriveForBusinessBrowseSession object. + +## SYNTAX + +### CreateExpanded (Default) + +``` +New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession [-ResponseHeadersVariable ] + [-AdditionalProperties ] [-BackupSizeInBytes ] [-CreatedDateTime ] + [-DirectoryObjectId ] [-Error ] + [-ExpirationDateTime ] [-Id ] [-RestorePointDateTime ] + [-RestorePointId ] [-Status ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### Create + +``` +New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession + -BodyParameter + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Create a new oneDriveForBusinessBrowseSession object. + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -AdditionalProperties + +Additional Parameters + +```yaml +Type: System.Collections.Hashtable +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BackupSizeInBytes + +The size of the backup in bytes. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BodyParameter + +oneDriveForBusinessBrowseSession +To construct, see NOTES section for BODYPARAMETER properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphOneDriveForBusinessBrowseSession +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Create + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- cf +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -CreatedDateTime + +The date and time when the browse session was created. +The timestamp type represents date and time information using ISO 8601 format and is always in UTC. +For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -DirectoryObjectId + +Id of the backed-up OneDrive. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Error + +publicError +To construct, see NOTES section for ERROR properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphPublicError +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ExpirationDateTime + +The date and time after which the browse session is deleted automatically. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Id + +The unique identifier for an entity. +Read-only. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestorePointDateTime + +The date and time of the restore point on which the browse session is created. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestorePointId + +. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Status + +browseSessionStatus + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WhatIf + +Runs the command in a mode that only reports what would happen without performing the actions. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- wi +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphOneDriveForBusinessBrowseSession + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphOneDriveForBusinessBrowseSession + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +BODYPARAMETER : oneDriveForBusinessBrowseSession + [(Any) ]: This indicates any property can be added to this object. + [BackupSizeInBytes ]: The size of the backup in bytes. + [CreatedDateTime ]: The date and time when the browse session was created. +The timestamp type represents date and time information using ISO 8601 format and is always in UTC. +For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + [Error ]: publicError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: Represents the error code. + [Details ]: Details of the error. + [Code ]: The error code. + [Message ]: The error message. + [Target ]: The target of the error. + [InnerError ]: publicInnerError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: The error code. + [Details ]: A collection of error details. + [Message ]: The error message. + [Target ]: The target of the error. + [Message ]: A non-localized message for the developer. + [Target ]: The target of the error. + [ExpirationDateTime ]: The date and time after which the browse session is deleted automatically. + [RestorePointDateTime ]: The date and time of the restore point on which the browse session is created. + [RestorePointId ]: + [Status ]: browseSessionStatus + [Id ]: The unique identifier for an entity. +Read-only. + [DirectoryObjectId ]: Id of the backed-up OneDrive. + +ERROR : publicError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: Represents the error code. + [Details ]: Details of the error. + [Code ]: The error code. + [Message ]: The error message. + [Target ]: The target of the error. + [InnerError ]: publicInnerError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: The error code. + [Details ]: A collection of error details. + [Message ]: The error message. + [Target ]: The target of the error. + [Message ]: A non-localized message for the developer. + [Target ]: The target of the error. + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessbrowsesession) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-onedriveforbusinessbrowsesessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md index 6db9fdb5d355e..4111c52489430 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy --- @@ -17,9 +17,6 @@ Create a protection policy for the OneDrive service in Microsoft 365. When the policy is created, its state is set to inactive. Users can also provide a list of protection units under the policy. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicy?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -37,7 +34,7 @@ New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy [-ResponseHeaders [-RetentionSettings ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -48,7 +45,6 @@ New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -62,6 +58,16 @@ Create a protection policy for the OneDrive service in Microsoft 365. When the policy is created, its state is set to inactive. Users can also provide a list of protection units under the policy. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -260,7 +266,7 @@ HelpMessage: '' ### -DriveProtectionUnitsBulkAdditionJobs - +. To construct, see NOTES section for DRIVEPROTECTIONUNITSBULKADDITIONJOBS properties and create a hash table. ```yaml @@ -367,7 +373,7 @@ HelpMessage: '' ### -IsEnabled - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -631,7 +637,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: oneDriveForBusinessProtectionPolicy +BODYPARAMETER : oneDriveForBusinessProtectionPolicy [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -718,7 +724,7 @@ Read-only. [DirectoryObjectIds ]: The list of OneDrive directoryObjectIds to add to the OneDrive protection policy. [Drives ]: The list of email addresses to add to the OneDrive protection policy. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -844,7 +850,7 @@ Read-only. [DirectoryObjectIds ]: The list of OneDrive directoryObjectIds to add to the OneDrive protection policy. [Drives ]: The list of email addresses to add to the OneDrive protection policy. -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -855,7 +861,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONPOLICYARTIFACTCOUNT ``: protectionPolicyArtifactCount +PROTECTIONPOLICYARTIFACTCOUNT : protectionPolicyArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: [Failed ]: @@ -869,28 +875,5 @@ RETENTIONSETTINGS : Contains the retention se ## RELATED LINKS -- [New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy) -- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-post-onedriveforbusinessprotectionpolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-onedriveforbusinessprotectionpolicies?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md index cb85151545d0f..f804359b8a3ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresession Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession --- @@ -14,9 +14,9 @@ title: New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession ## SYNOPSIS Create a new oneDriveForBusinessRestoreSession object. - -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSession?view=graph-powershell-beta) +To create a granular restore session, granular drive restore artifacts must be present in the payload. +A request can't include both granularDriveRestoreArtifact and driveRestoreArtifact in the same create or update request. +If no payload is provided when you create the restore session, the request creates an empty standard restore session by default. ## SYNTAX @@ -35,7 +35,7 @@ New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession [-ResponseHeadersVa [-RestoreSessionArtifactCount ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -46,7 +46,6 @@ New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -57,6 +56,19 @@ This cmdlet has the following aliases, ## DESCRIPTION Create a new oneDriveForBusinessRestoreSession object. +To create a granular restore session, granular drive restore artifacts must be present in the payload. +A request can't include both granularDriveRestoreArtifact and driveRestoreArtifact in the same create or update request. +If no payload is provided when you create the restore session, the request creates an empty standard restore session by default. + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} ## PARAMETERS @@ -278,7 +290,7 @@ HelpMessage: '' ### -GranularDriveRestoreArtifacts - +A collection of browse session ID and item key details that can be used to restore OneDrive for work or school files and folders. To construct, see NOTES section for GRANULARDRIVERESTOREARTIFACTS properties and create a hash table. ```yaml @@ -627,7 +639,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: oneDriveForBusinessRestoreSession +BODYPARAMETER : oneDriveForBusinessRestoreSession [(Any) ]: This indicates any property can be added to this object. [CompletedDateTime ]: The time of completion of the restore session. [CreatedBy ]: identitySet @@ -725,21 +737,22 @@ Future value; don't use. Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding OneDrive for work or school restore session in a bulk operation. [Drives ]: The list of email addresses that are added to the corresponding OneDrive for work or school restore session in a bulk operation. - [GranularDriveRestoreArtifacts ]: - [BrowseSessionId ]: - [CompletionDateTime ]: - [RestorePointDateTime ]: - [RestoredItemKey ]: - [RestoredItemPath ]: - [RestoredItemWebUrl ]: - [StartDateTime ]: + [GranularDriveRestoreArtifacts ]: A collection of browse session ID and item key details that can be used to restore OneDrive for work or school files and folders. + [BrowseSessionId ]: The unique identifier of the browseSession + [CompletionDateTime ]: Date time when the artifact's restoration completes. + [RestorePointDateTime ]: The restore point date time to which the artifact is restored. + [RestoredItemKey ]: The unique identifier for the restored artifact. + [RestoredItemPath ]: The path of the restored artifact. +It's the path of the folder where all the artifacts are restored within a granular restore session. + [RestoredItemWebUrl ]: The web url of the restored artifact. + [StartDateTime ]: The start time of the restoration. [Status ]: artifactRestoreStatus - [WebUrl ]: + [WebUrl ]: The original web url of the artifact being restored. [Id ]: The unique identifier for an entity. Read-only. - [DirectoryObjectId ]: + [DirectoryObjectId ]: Id of the drive in which artifact is present. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -855,7 +868,7 @@ Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding OneDrive for work or school restore session in a bulk operation. [Drives ]: The list of email addresses that are added to the corresponding OneDrive for work or school restore session in a bulk operation. -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -871,21 +884,22 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -GRANULARDRIVERESTOREARTIFACTS : . - [BrowseSessionId ]: - [CompletionDateTime ]: - [RestorePointDateTime ]: - [RestoredItemKey ]: - [RestoredItemPath ]: - [RestoredItemWebUrl ]: - [StartDateTime ]: +GRANULARDRIVERESTOREARTIFACTS : A collection of browse session ID and item key details that can be used to restore OneDrive for work or school files and folders. + [BrowseSessionId ]: The unique identifier of the browseSession + [CompletionDateTime ]: Date time when the artifact's restoration completes. + [RestorePointDateTime ]: The restore point date time to which the artifact is restored. + [RestoredItemKey ]: The unique identifier for the restored artifact. + [RestoredItemPath ]: The path of the restored artifact. +It's the path of the folder where all the artifacts are restored within a granular restore session. + [RestoredItemWebUrl ]: The web url of the restored artifact. + [StartDateTime ]: The start time of the restoration. [Status ]: artifactRestoreStatus - [WebUrl ]: + [WebUrl ]: The original web url of the artifact being restored. [Id ]: The unique identifier for an entity. Read-only. - [DirectoryObjectId ]: + [DirectoryObjectId ]: Id of the drive in which artifact is present. -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -896,7 +910,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -RESTORESESSIONARTIFACTCOUNT ``: restoreSessionArtifactCount +RESTORESESSIONARTIFACTCOUNT : restoreSessionArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: The number of artifacts whose restoration completed. [Failed ]: The number of artifacts whose restoration failed. @@ -906,28 +920,5 @@ RESTORESESSIONARTIFACTCOUNT ``: rest ## RELATED LINKS -- [New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresession) -- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-post-onedriveforbusinessrestoresessions?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresession) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-onedriveforbusinessrestoresessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md index 846c2a5f8b4e1..846b6a71eac9a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact --- @@ -15,9 +15,6 @@ title: New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreA Create new navigation property to driveRestoreArtifacts for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-RestoredSiteId ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +38,6 @@ New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -54,7 +50,7 @@ New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-RestoredSiteId ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -65,7 +61,6 @@ New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,6 +72,16 @@ This cmdlet has the following aliases, Create new navigation property to driveRestoreArtifacts for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -655,7 +660,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: driveRestoreArtifact +BODYPARAMETER : driveRestoreArtifact [(Any) ]: This indicates any property can be added to this object. [CompletionDateTime ]: The time when restoration of restore artifact is completed. [DestinationType ]: destinationType @@ -715,7 +720,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [RestoredSiteId ]: The new site identifier if destinationType is new, and the input site ID if the destinationType is inPlace. -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -731,7 +736,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -766,7 +771,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -RESTOREPOINT ``: restorePoint +RESTOREPOINT : restorePoint [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -819,27 +824,4 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS -- [New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md index 59407f2888e16..049e6b764c392 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest --- @@ -16,9 +16,6 @@ title: New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreA Create a driveRestoreArtifactsBulkAdditionRequest object associated with a oneDriveForBusinessRestoreSession. The following steps describe how to create and manage a oneDriveForBusinessRestoreSession with bulk artifact additions. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -34,7 +31,7 @@ New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-RestorePointPreference ] [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -46,7 +43,6 @@ New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -62,7 +58,7 @@ New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-RestorePointPreference ] [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -74,7 +70,6 @@ New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -87,6 +82,16 @@ This cmdlet has the following aliases, Create a driveRestoreArtifactsBulkAdditionRequest object associated with a oneDriveForBusinessRestoreSession. The following steps describe how to create and manage a oneDriveForBusinessRestoreSession with bulk artifact additions. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -858,7 +863,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: driveRestoreArtifactsBulkAdditionRequest +BODYPARAMETER : driveRestoreArtifactsBulkAdditionRequest [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -905,7 +910,7 @@ Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding OneDrive for work or school restore session in a bulk operation. [Drives ]: The list of email addresses that are added to the corresponding OneDrive for work or school restore session in a bulk operation. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -916,7 +921,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -932,7 +937,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -967,7 +972,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -978,7 +983,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONTIMEPERIOD ``: timePeriod +PROTECTIONTIMEPERIOD : timePeriod [(Any) ]: This indicates any property can be added to this object. [EndDateTime ]: The date time of the end of the time period. [StartDateTime ]: The date time of the start of the time period. @@ -986,28 +991,5 @@ PROTECTIONTIMEPERIOD ``: timePeriod ## RELATED LINKS -- [New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest) -- [Graph API Reference](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-post-driverestoreartifactsbulkadditionrequests?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest) +- [](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-post-driverestoreartifactsbulkadditionrequests?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md new file mode 100644 index 0000000000000..e3f4f21a9ecdc --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -0,0 +1,798 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifact +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact +--- + +# New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact + +## SYNOPSIS + +Create new navigation property to granularDriveRestoreArtifacts for solutions + +## SYNTAX + +### CreateExpanded (Default) + +``` +New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact + -OneDriveForBusinessRestoreSessionId [-ResponseHeadersVariable ] + [-AdditionalProperties ] [-BrowseSessionId ] [-CompletionDateTime ] + [-DirectoryObjectId ] [-Id ] [-RestorePointDateTime ] + [-RestoredItemKey ] [-RestoredItemPath ] [-RestoredItemWebUrl ] + [-StartDateTime ] [-Status ] [-WebUrl ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### Create + +``` +New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact + -OneDriveForBusinessRestoreSessionId + -BodyParameter [-ResponseHeadersVariable ] + [-Break] [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### CreateViaIdentityExpanded + +``` +New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact + -InputObject [-ResponseHeadersVariable ] + [-AdditionalProperties ] [-BrowseSessionId ] [-CompletionDateTime ] + [-DirectoryObjectId ] [-Id ] [-RestorePointDateTime ] + [-RestoredItemKey ] [-RestoredItemPath ] [-RestoredItemWebUrl ] + [-StartDateTime ] [-Status ] [-WebUrl ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### CreateViaIdentity + +``` +New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact + -InputObject -BodyParameter + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Create new navigation property to granularDriveRestoreArtifacts for solutions + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -AdditionalProperties + +Additional Parameters + +```yaml +Type: System.Collections.Hashtable +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BodyParameter + +granularDriveRestoreArtifact +To construct, see NOTES section for BODYPARAMETER properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphGranularDriveRestoreArtifact +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Create + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BrowseSessionId + +The unique identifier of the browseSession + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -CompletionDateTime + +Date time when the artifact's restoration completes. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- cf +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -DirectoryObjectId + +Id of the drive in which artifact is present. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Id + +The unique identifier for an entity. +Read-only. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -OneDriveForBusinessRestoreSessionId + +The unique identifier of oneDriveForBusinessRestoreSession + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Create + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestoredItemKey + +The unique identifier for the restored artifact. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestoredItemPath + +The path of the restored artifact. +It's the path of the folder where all the artifacts are restored within a granular restore session. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestoredItemWebUrl + +The web url of the restored artifact. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestorePointDateTime + +The restore point date time to which the artifact is restored. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -StartDateTime + +The start time of the restoration. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Status + +artifactRestoreStatus + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WebUrl + +The original web url of the artifact being restored. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WhatIf + +Runs the command in a mode that only reports what would happen without performing the actions. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- wi +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity + +{{ Fill in the Description }} + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphGranularDriveRestoreArtifact + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphGranularDriveRestoreArtifact + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +BODYPARAMETER : granularDriveRestoreArtifact + [(Any) ]: This indicates any property can be added to this object. + [BrowseSessionId ]: The unique identifier of the browseSession + [CompletionDateTime ]: Date time when the artifact's restoration completes. + [RestorePointDateTime ]: The restore point date time to which the artifact is restored. + [RestoredItemKey ]: The unique identifier for the restored artifact. + [RestoredItemPath ]: The path of the restored artifact. +It's the path of the folder where all the artifacts are restored within a granular restore session. + [RestoredItemWebUrl ]: The web url of the restored artifact. + [StartDateTime ]: The start time of the restoration. + [Status ]: artifactRestoreStatus + [WebUrl ]: The original web url of the artifact being restored. + [Id ]: The unique identifier for an entity. +Read-only. + [DirectoryObjectId ]: Id of the drive in which artifact is present. + +INPUTOBJECT : Identity Parameter + [BrowseSessionBaseId ]: The unique identifier of browseSessionBase + [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule + [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit + [DriveProtectionUnitsBulkAdditionJobId ]: The unique identifier of driveProtectionUnitsBulkAdditionJob + [DriveRestoreArtifactId ]: The unique identifier of driveRestoreArtifact + [DriveRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of driveRestoreArtifactsBulkAdditionRequest + [ExchangeProtectionPolicyId ]: The unique identifier of exchangeProtectionPolicy + [ExchangeRestoreSessionId ]: The unique identifier of exchangeRestoreSession + [GranularDriveRestoreArtifactId ]: The unique identifier of granularDriveRestoreArtifact + [GranularMailboxRestoreArtifactId ]: The unique identifier of granularMailboxRestoreArtifact + [GranularSiteRestoreArtifactId ]: The unique identifier of granularSiteRestoreArtifact + [MailboxProtectionRuleId ]: The unique identifier of mailboxProtectionRule + [MailboxProtectionUnitId ]: The unique identifier of mailboxProtectionUnit + [MailboxProtectionUnitsBulkAdditionJobId ]: The unique identifier of mailboxProtectionUnitsBulkAdditionJob + [MailboxRestoreArtifactId ]: The unique identifier of mailboxRestoreArtifact + [MailboxRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of mailboxRestoreArtifactsBulkAdditionRequest + [NextFetchToken ]: Usage: nextFetchToken='{nextFetchToken}' + [OneDriveForBusinessBrowseSessionId ]: The unique identifier of oneDriveForBusinessBrowseSession + [OneDriveForBusinessProtectionPolicyId ]: The unique identifier of oneDriveForBusinessProtectionPolicy + [OneDriveForBusinessRestoreSessionId ]: The unique identifier of oneDriveForBusinessRestoreSession + [ProtectionPolicyBaseId ]: The unique identifier of protectionPolicyBase + [ProtectionUnitBaseId ]: The unique identifier of protectionUnitBase + [RestorePointId ]: The unique identifier of restorePoint + [RestoreSessionBaseId ]: The unique identifier of restoreSessionBase + [ServiceAppId ]: The unique identifier of serviceApp + [SharePointBrowseSessionId ]: The unique identifier of sharePointBrowseSession + [SharePointProtectionPolicyId ]: The unique identifier of sharePointProtectionPolicy + [SharePointRestoreSessionId ]: The unique identifier of sharePointRestoreSession + [SiteProtectionRuleId ]: The unique identifier of siteProtectionRule + [SiteProtectionUnitId ]: The unique identifier of siteProtectionUnit + [SiteProtectionUnitsBulkAdditionJobId ]: The unique identifier of siteProtectionUnitsBulkAdditionJob + [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact + [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestorePoint.md index cdd7ccc32a4cd..3d65b7b5a3ab9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestorePoint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestorepoint Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestorePoint --- @@ -15,9 +15,6 @@ title: New-MgSolutionBackupRestorePoint Create new navigation property to restorePoints for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestorePoint](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestorePoint?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -28,7 +25,7 @@ New-MgSolutionBackupRestorePoint [-ResponseHeadersVariable ] [-ProtectionDateTime ] [-ProtectionUnit ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -38,7 +35,6 @@ New-MgSolutionBackupRestorePoint -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -50,6 +46,16 @@ This cmdlet has the following aliases, Create new navigation property to restorePoints for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -445,7 +451,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: restorePoint +BODYPARAMETER : restorePoint [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -495,7 +501,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Status ]: protectionUnitStatus [Tags ]: restorePointTags -PROTECTIONUNIT ``: protectionUnitBase +PROTECTIONUNIT : protectionUnitBase [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -541,27 +547,4 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS -- [New-MgSolutionBackupRestorePoint](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestorepoint) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestorepoint) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md index 5fbfb575ab184..bb31d1926bf12 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreprotectionpolicy Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreProtectionPolicy --- @@ -15,9 +15,6 @@ title: New-MgSolutionBackupRestoreProtectionPolicy Create new navigation property to protectionPolicies for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreProtectionPolicy?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -31,7 +28,7 @@ New-MgSolutionBackupRestoreProtectionPolicy [-ResponseHeadersVariable ] [-RetentionSettings ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +38,6 @@ New-MgSolutionBackupRestoreProtectionPolicy -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,6 +49,16 @@ This cmdlet has the following aliases, Create new navigation property to protectionPolicies for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -292,7 +298,7 @@ HelpMessage: '' ### -IsEnabled - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -556,7 +562,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: protectionPolicyBase +BODYPARAMETER : protectionPolicyBase [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -586,7 +592,7 @@ For example, in the access reviews decisions API, this property might record the [Period ]: The period of time to retain the protected data for a single Microsoft 365 service. [Status ]: protectionPolicyStatus -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -597,7 +603,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -608,7 +614,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONPOLICYARTIFACTCOUNT ``: protectionPolicyArtifactCount +PROTECTIONPOLICYARTIFACTCOUNT : protectionPolicyArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: [Failed ]: @@ -622,27 +628,4 @@ RETENTIONSETTINGS : Contains the retention se ## RELATED LINKS -- [New-MgSolutionBackupRestoreProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreprotectionpolicy) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreprotectionpolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreServiceApp.md index 2f41effa4588a..f1a88b75b83a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreServiceApp.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreserviceapp Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreServiceApp --- @@ -15,9 +15,6 @@ title: New-MgSolutionBackupRestoreServiceApp Create a new serviceApp. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreServiceApp](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreServiceApp?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -29,7 +26,7 @@ New-MgSolutionBackupRestoreServiceApp [-ResponseHeadersVariable ] [-LastModifiedDateTime ] [-RegistrationDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -39,7 +36,6 @@ New-MgSolutionBackupRestoreServiceApp -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +47,16 @@ This cmdlet has the following aliases, Create a new serviceApp. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -489,14 +495,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -APPLICATION ``: identity +APPLICATION : identity [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: The display name of the identity.For drive items, the display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user don't show up as changed when using delta. [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. -BODYPARAMETER ``: serviceApp +BODYPARAMETER : serviceApp [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -516,7 +522,7 @@ For example, in the access reviews decisions API, this property might record the [RegistrationDateTime ]: Timestamp of the creation of the service app entity. [Status ]: serviceAppStatus -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -530,28 +536,5 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgSolutionBackupRestoreServiceApp](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreserviceapp) -- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-post-serviceapps?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreserviceapp) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-serviceapps?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSession.md index c5b66a94dd0a2..c4af1818d2559 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresession Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreSession --- @@ -15,9 +15,6 @@ title: New-MgSolutionBackupRestoreSession Create new navigation property to restoreSessions for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreSession?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -31,7 +28,7 @@ New-MgSolutionBackupRestoreSession [-ResponseHeadersVariable ] [-RestoreSessionArtifactCount ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +38,6 @@ New-MgSolutionBackupRestoreSession -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,6 +49,16 @@ This cmdlet has the following aliases, Create new navigation property to restoreSessions for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -556,7 +562,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: restoreSessionBase +BODYPARAMETER : restoreSessionBase [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -598,7 +604,7 @@ For example, in the access reviews decisions API, this property might record the [Total ]: The number of artifacts present in the restore session. [Status ]: restoreSessionStatus -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -609,7 +615,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -625,7 +631,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -636,7 +642,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -RESTORESESSIONARTIFACTCOUNT ``: restoreSessionArtifactCount +RESTORESESSIONARTIFACTCOUNT : restoreSessionArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: The number of artifacts whose restoration completed. [Failed ]: The number of artifacts whose restoration failed. @@ -646,27 +652,4 @@ RESTORESESSIONARTIFACTCOUNT ``: rest ## RELATED LINKS -- [New-MgSolutionBackupRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md new file mode 100644 index 0000000000000..21fb54f25e9cf --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -0,0 +1,591 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointbrowsesession +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: New-MgSolutionBackupRestoreSharePointBrowseSession +--- + +# New-MgSolutionBackupRestoreSharePointBrowseSession + +## SYNOPSIS + +Create a new sharePointBrowseSession object. + +## SYNTAX + +### CreateExpanded (Default) + +``` +New-MgSolutionBackupRestoreSharePointBrowseSession [-ResponseHeadersVariable ] + [-AdditionalProperties ] [-BackupSizeInBytes ] [-CreatedDateTime ] + [-Error ] [-ExpirationDateTime ] [-Id ] + [-RestorePointDateTime ] [-RestorePointId ] [-SiteId ] [-Status ] + [-Break] [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### Create + +``` +New-MgSolutionBackupRestoreSharePointBrowseSession + -BodyParameter [-ResponseHeadersVariable ] + [-Break] [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Create a new sharePointBrowseSession object. + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -AdditionalProperties + +Additional Parameters + +```yaml +Type: System.Collections.Hashtable +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BackupSizeInBytes + +The size of the backup in bytes. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BodyParameter + +sharePointBrowseSession +To construct, see NOTES section for BODYPARAMETER properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphSharePointBrowseSession +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Create + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- cf +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -CreatedDateTime + +The date and time when the browse session was created. +The timestamp type represents date and time information using ISO 8601 format and is always in UTC. +For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Error + +publicError +To construct, see NOTES section for ERROR properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphPublicError +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ExpirationDateTime + +The date and time after which the browse session is deleted automatically. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Id + +The unique identifier for an entity. +Read-only. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestorePointDateTime + +The date and time of the restore point on which the browse session is created. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestorePointId + +. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -SiteId + +Id of the backed-up SharePoint site. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Status + +browseSessionStatus + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WhatIf + +Runs the command in a mode that only reports what would happen without performing the actions. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- wi +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphSharePointBrowseSession + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphSharePointBrowseSession + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +BODYPARAMETER : sharePointBrowseSession + [(Any) ]: This indicates any property can be added to this object. + [BackupSizeInBytes ]: The size of the backup in bytes. + [CreatedDateTime ]: The date and time when the browse session was created. +The timestamp type represents date and time information using ISO 8601 format and is always in UTC. +For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + [Error ]: publicError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: Represents the error code. + [Details ]: Details of the error. + [Code ]: The error code. + [Message ]: The error message. + [Target ]: The target of the error. + [InnerError ]: publicInnerError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: The error code. + [Details ]: A collection of error details. + [Message ]: The error message. + [Target ]: The target of the error. + [Message ]: A non-localized message for the developer. + [Target ]: The target of the error. + [ExpirationDateTime ]: The date and time after which the browse session is deleted automatically. + [RestorePointDateTime ]: The date and time of the restore point on which the browse session is created. + [RestorePointId ]: + [Status ]: browseSessionStatus + [Id ]: The unique identifier for an entity. +Read-only. + [SiteId ]: Id of the backed-up SharePoint site. + +ERROR : publicError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: Represents the error code. + [Details ]: Details of the error. + [Code ]: The error code. + [Message ]: The error message. + [Target ]: The target of the error. + [InnerError ]: publicInnerError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: The error code. + [Details ]: A collection of error details. + [Message ]: The error message. + [Target ]: The target of the error. + [Message ]: A non-localized message for the developer. + [Target ]: The target of the error. + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointbrowsesession) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-sharepointbrowsesessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md index b5b64ebc500ce..a133d8e31aed2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointprotectionpolicy Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreSharePointProtectionPolicy --- @@ -17,9 +17,6 @@ Create a protection policy for a M365 service SharePoint. Policy will be created in inactive state. User can also provide a list of protection units under the policy. -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreSharePointProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreSharePointProtectionPolicy?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -36,7 +33,7 @@ New-MgSolutionBackupRestoreSharePointProtectionPolicy [-ResponseHeadersVariable [-SiteProtectionUnitsBulkAdditionJobs ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -46,7 +43,7 @@ New-MgSolutionBackupRestoreSharePointProtectionPolicy -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -60,6 +57,16 @@ Create a protection policy for a M365 service SharePoint. Policy will be created in inactive state. User can also provide a list of protection units under the policy. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -299,7 +306,7 @@ HelpMessage: '' ### -IsEnabled - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -536,7 +543,7 @@ HelpMessage: '' ### -SiteProtectionUnitsBulkAdditionJobs - +. To construct, see NOTES section for SITEPROTECTIONUNITSBULKADDITIONJOBS properties and create a hash table. ```yaml @@ -629,7 +636,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: sharePointProtectionPolicy +BODYPARAMETER : sharePointProtectionPolicy [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -716,7 +723,7 @@ Read-only. [SiteIds ]: The list of SharePoint site IDs to add to the SharePoint protection policy. [SiteWebUrls ]: The list of SharePoint site URLs to add to the SharePoint protection policy. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -727,7 +734,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -738,7 +745,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONPOLICYARTIFACTCOUNT ``: protectionPolicyArtifactCount +PROTECTIONPOLICYARTIFACTCOUNT : protectionPolicyArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: [Failed ]: @@ -867,28 +874,5 @@ Read-only. ## RELATED LINKS -- [New-MgSolutionBackupRestoreSharePointProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointprotectionpolicy) -- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-post-sharepointprotectionpolicies?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointprotectionpolicy) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-sharepointprotectionpolicies?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSession.md index 6f147d0e227c7..f95d4b28c7599 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresession Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreSharePointRestoreSession --- @@ -14,9 +14,9 @@ title: New-MgSolutionBackupRestoreSharePointRestoreSession ## SYNOPSIS Create a new sharePointRestoreSession object. - -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreSharePointRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreSharePointRestoreSession?view=graph-powershell-beta) +To create a granular restore session, granular site restore artifacts must be present in the payload. +A request can't include both granularSiteRestoreArtifact and siteRestoreArtifact in the same create or update request. +If no payload is provided when you create the restore session, the request creates an empty standard restore session by default. ## SYNTAX @@ -35,7 +35,7 @@ New-MgSolutionBackupRestoreSharePointRestoreSession [-ResponseHeadersVariable ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -45,7 +45,7 @@ New-MgSolutionBackupRestoreSharePointRestoreSession -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -56,6 +56,19 @@ This cmdlet has the following aliases, ## DESCRIPTION Create a new sharePointRestoreSession object. +To create a granular restore session, granular site restore artifacts must be present in the payload. +A request can't include both granularSiteRestoreArtifact and siteRestoreArtifact in the same create or update request. +If no payload is provided when you create the restore session, the request creates an empty standard restore session by default. + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} ## PARAMETERS @@ -233,7 +246,7 @@ HelpMessage: '' ### -GranularSiteRestoreArtifacts - +A collection of browse session ID and item key details that can be used to restore SharePoint files and folders. To construct, see NOTES section for GRANULARSITERESTOREARTIFACTS properties and create a hash table. ```yaml @@ -626,7 +639,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: sharePointRestoreSession +BODYPARAMETER : sharePointRestoreSession [(Any) ]: This indicates any property can be added to this object. [CompletedDateTime ]: The time of completion of the restore session. [CreatedBy ]: identitySet @@ -667,19 +680,20 @@ For example, in the access reviews decisions API, this property might record the [Status ]: restoreSessionStatus [Id ]: The unique identifier for an entity. Read-only. - [GranularSiteRestoreArtifacts ]: - [BrowseSessionId ]: - [CompletionDateTime ]: - [RestorePointDateTime ]: - [RestoredItemKey ]: - [RestoredItemPath ]: - [RestoredItemWebUrl ]: - [StartDateTime ]: + [GranularSiteRestoreArtifacts ]: A collection of browse session ID and item key details that can be used to restore SharePoint files and folders. + [BrowseSessionId ]: The unique identifier of the browseSession + [CompletionDateTime ]: Date time when the artifact's restoration completes. + [RestorePointDateTime ]: The restore point date time to which the artifact is restored. + [RestoredItemKey ]: The unique identifier for the restored artifact. + [RestoredItemPath ]: The path of the restored artifact. +It's the path of the folder where all the artifacts are restored within a granular restore session. + [RestoredItemWebUrl ]: The web url of the restored artifact. + [StartDateTime ]: The start time of the restoration. [Status ]: artifactRestoreStatus - [WebUrl ]: + [WebUrl ]: The original web url of the artifact being restored. [Id ]: The unique identifier for an entity. Read-only. - [SiteId ]: + [SiteId ]: Id of the site in which artifact is present. [SiteRestoreArtifacts ]: A collection of restore points and destination details that can be used to restore SharePoint sites. [CompletionDateTime ]: The time when restoration of restore artifact is completed. [DestinationType ]: destinationType @@ -738,7 +752,7 @@ Read-only. [SiteIds ]: The list of SharePoint site IDs that are added to the corresponding SharePoint restore session in a bulk operation. [SiteWebUrls ]: The list of SharePoint site URLs that are added to the corresponding SharePoint restore session in a bulk operation. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -749,7 +763,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -765,21 +779,22 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -GRANULARSITERESTOREARTIFACTS : . - [BrowseSessionId ]: - [CompletionDateTime ]: - [RestorePointDateTime ]: - [RestoredItemKey ]: - [RestoredItemPath ]: - [RestoredItemWebUrl ]: - [StartDateTime ]: +GRANULARSITERESTOREARTIFACTS : A collection of browse session ID and item key details that can be used to restore SharePoint files and folders. + [BrowseSessionId ]: The unique identifier of the browseSession + [CompletionDateTime ]: Date time when the artifact's restoration completes. + [RestorePointDateTime ]: The restore point date time to which the artifact is restored. + [RestoredItemKey ]: The unique identifier for the restored artifact. + [RestoredItemPath ]: The path of the restored artifact. +It's the path of the folder where all the artifacts are restored within a granular restore session. + [RestoredItemWebUrl ]: The web url of the restored artifact. + [StartDateTime ]: The start time of the restoration. [Status ]: artifactRestoreStatus - [WebUrl ]: + [WebUrl ]: The original web url of the artifact being restored. [Id ]: The unique identifier for an entity. Read-only. - [SiteId ]: + [SiteId ]: Id of the site in which artifact is present. -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -790,7 +805,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -RESTORESESSIONARTIFACTCOUNT ``: restoreSessionArtifactCount +RESTORESESSIONARTIFACTCOUNT : restoreSessionArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: The number of artifacts whose restoration completed. [Failed ]: The number of artifacts whose restoration failed. @@ -905,28 +920,5 @@ Read-only. ## RELATED LINKS -- [New-MgSolutionBackupRestoreSharePointRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresession) -- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-post-sharepointrestoresessions?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresession) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-sharepointrestoresessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md new file mode 100644 index 0000000000000..c5468259b661a --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -0,0 +1,797 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifact +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact +--- + +# New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact + +## SYNOPSIS + +Create new navigation property to granularSiteRestoreArtifacts for solutions + +## SYNTAX + +### CreateExpanded (Default) + +``` +New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact + -SharePointRestoreSessionId [-ResponseHeadersVariable ] + [-AdditionalProperties ] [-BrowseSessionId ] [-CompletionDateTime ] + [-Id ] [-RestorePointDateTime ] [-RestoredItemKey ] + [-RestoredItemPath ] [-RestoredItemWebUrl ] [-SiteId ] + [-StartDateTime ] [-Status ] [-WebUrl ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### Create + +``` +New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact + -SharePointRestoreSessionId -BodyParameter + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### CreateViaIdentityExpanded + +``` +New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact + -InputObject [-ResponseHeadersVariable ] + [-AdditionalProperties ] [-BrowseSessionId ] [-CompletionDateTime ] + [-Id ] [-RestorePointDateTime ] [-RestoredItemKey ] + [-RestoredItemPath ] [-RestoredItemWebUrl ] [-SiteId ] + [-StartDateTime ] [-Status ] [-WebUrl ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### CreateViaIdentity + +``` +New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact + -InputObject -BodyParameter + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Create new navigation property to granularSiteRestoreArtifacts for solutions + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -AdditionalProperties + +Additional Parameters + +```yaml +Type: System.Collections.Hashtable +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BodyParameter + +granularSiteRestoreArtifact +To construct, see NOTES section for BODYPARAMETER properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphGranularSiteRestoreArtifact +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Create + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BrowseSessionId + +The unique identifier of the browseSession + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -CompletionDateTime + +Date time when the artifact's restoration completes. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- cf +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Id + +The unique identifier for an entity. +Read-only. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestoredItemKey + +The unique identifier for the restored artifact. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestoredItemPath + +The path of the restored artifact. +It's the path of the folder where all the artifacts are restored within a granular restore session. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestoredItemWebUrl + +The web url of the restored artifact. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestorePointDateTime + +The restore point date time to which the artifact is restored. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -SharePointRestoreSessionId + +The unique identifier of sharePointRestoreSession + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateExpanded + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Create + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -SiteId + +Id of the site in which artifact is present. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -StartDateTime + +The start time of the restoration. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Status + +artifactRestoreStatus + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WebUrl + +The original web url of the artifact being restored. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: CreateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: CreateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WhatIf + +Runs the command in a mode that only reports what would happen without performing the actions. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- wi +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity + +{{ Fill in the Description }} + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphGranularSiteRestoreArtifact + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphGranularSiteRestoreArtifact + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +BODYPARAMETER : granularSiteRestoreArtifact + [(Any) ]: This indicates any property can be added to this object. + [BrowseSessionId ]: The unique identifier of the browseSession + [CompletionDateTime ]: Date time when the artifact's restoration completes. + [RestorePointDateTime ]: The restore point date time to which the artifact is restored. + [RestoredItemKey ]: The unique identifier for the restored artifact. + [RestoredItemPath ]: The path of the restored artifact. +It's the path of the folder where all the artifacts are restored within a granular restore session. + [RestoredItemWebUrl ]: The web url of the restored artifact. + [StartDateTime ]: The start time of the restoration. + [Status ]: artifactRestoreStatus + [WebUrl ]: The original web url of the artifact being restored. + [Id ]: The unique identifier for an entity. +Read-only. + [SiteId ]: Id of the site in which artifact is present. + +INPUTOBJECT : Identity Parameter + [BrowseSessionBaseId ]: The unique identifier of browseSessionBase + [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule + [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit + [DriveProtectionUnitsBulkAdditionJobId ]: The unique identifier of driveProtectionUnitsBulkAdditionJob + [DriveRestoreArtifactId ]: The unique identifier of driveRestoreArtifact + [DriveRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of driveRestoreArtifactsBulkAdditionRequest + [ExchangeProtectionPolicyId ]: The unique identifier of exchangeProtectionPolicy + [ExchangeRestoreSessionId ]: The unique identifier of exchangeRestoreSession + [GranularDriveRestoreArtifactId ]: The unique identifier of granularDriveRestoreArtifact + [GranularMailboxRestoreArtifactId ]: The unique identifier of granularMailboxRestoreArtifact + [GranularSiteRestoreArtifactId ]: The unique identifier of granularSiteRestoreArtifact + [MailboxProtectionRuleId ]: The unique identifier of mailboxProtectionRule + [MailboxProtectionUnitId ]: The unique identifier of mailboxProtectionUnit + [MailboxProtectionUnitsBulkAdditionJobId ]: The unique identifier of mailboxProtectionUnitsBulkAdditionJob + [MailboxRestoreArtifactId ]: The unique identifier of mailboxRestoreArtifact + [MailboxRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of mailboxRestoreArtifactsBulkAdditionRequest + [NextFetchToken ]: Usage: nextFetchToken='{nextFetchToken}' + [OneDriveForBusinessBrowseSessionId ]: The unique identifier of oneDriveForBusinessBrowseSession + [OneDriveForBusinessProtectionPolicyId ]: The unique identifier of oneDriveForBusinessProtectionPolicy + [OneDriveForBusinessRestoreSessionId ]: The unique identifier of oneDriveForBusinessRestoreSession + [ProtectionPolicyBaseId ]: The unique identifier of protectionPolicyBase + [ProtectionUnitBaseId ]: The unique identifier of protectionUnitBase + [RestorePointId ]: The unique identifier of restorePoint + [RestoreSessionBaseId ]: The unique identifier of restoreSessionBase + [ServiceAppId ]: The unique identifier of serviceApp + [SharePointBrowseSessionId ]: The unique identifier of sharePointBrowseSession + [SharePointProtectionPolicyId ]: The unique identifier of sharePointProtectionPolicy + [SharePointRestoreSessionId ]: The unique identifier of sharePointRestoreSession + [SiteProtectionRuleId ]: The unique identifier of siteProtectionRule + [SiteProtectionUnitId ]: The unique identifier of siteProtectionUnit + [SiteProtectionUnitsBulkAdditionJobId ]: The unique identifier of siteProtectionUnitsBulkAdditionJob + [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact + [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md index 1ebd5d017a098..27e2a0d8e7fc4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact --- @@ -15,9 +15,6 @@ title: New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact Create new navigation property to siteRestoreArtifacts for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact [-RestoredSiteId ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +38,6 @@ New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -54,7 +50,7 @@ New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact [-RestoredSiteId ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -65,7 +61,6 @@ New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -77,6 +72,16 @@ This cmdlet has the following aliases, Create new navigation property to siteRestoreArtifacts for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -655,7 +660,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: siteRestoreArtifact +BODYPARAMETER : siteRestoreArtifact [(Any) ]: This indicates any property can be added to this object. [CompletionDateTime ]: The time when restoration of restore artifact is completed. [DestinationType ]: destinationType @@ -715,7 +720,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [RestoredSiteId ]: The new site identifier if the value of the destinationType property is new, and the existing site ID if the value is inPlace. -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -731,7 +736,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -766,7 +771,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -RESTOREPOINT ``: restorePoint +RESTOREPOINT : restorePoint [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -819,27 +824,4 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS -- [New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md index 7c4a6e1e1fb14..e568c0fbac333 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest --- @@ -16,9 +16,6 @@ title: New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBul Create a new siteRestoreArtifactsBulkAdditionRequest object associated with a sharePointRestoreSession. The following steps describe how to create and manage a sharePointRestoreSession with bulk artifact additions: -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -34,7 +31,6 @@ New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditi [-SiteWebUrls ] [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -46,7 +42,6 @@ New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditi [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -62,7 +57,6 @@ New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditi [-SiteWebUrls ] [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -74,7 +68,6 @@ New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditi [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -87,6 +80,16 @@ This cmdlet has the following aliases, Create a new siteRestoreArtifactsBulkAdditionRequest object associated with a sharePointRestoreSession. The following steps describe how to create and manage a sharePointRestoreSession with bulk artifact additions: +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -858,7 +861,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: siteRestoreArtifactsBulkAdditionRequest +BODYPARAMETER : siteRestoreArtifactsBulkAdditionRequest [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -905,7 +908,7 @@ Read-only. [SiteIds ]: The list of SharePoint site IDs that are added to the corresponding SharePoint restore session in a bulk operation. [SiteWebUrls ]: The list of SharePoint site URLs that are added to the corresponding SharePoint restore session in a bulk operation. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -916,7 +919,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -932,7 +935,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -967,7 +970,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -978,7 +981,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONTIMEPERIOD ``: timePeriod +PROTECTIONTIMEPERIOD : timePeriod [(Any) ]: This indicates any property can be added to this object. [EndDateTime ]: The date time of the end of the time period. [StartDateTime ]: The date time of the start of the time period. @@ -986,28 +989,5 @@ PROTECTIONTIMEPERIOD ``: timePeriod ## RELATED LINKS -- [New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest) -- [Graph API Reference](https://learn.microsoft.com/graph/api/sharepointrestoresession-post-siterestoreartifactsbulkadditionrequests?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest) +- [](https://learn.microsoft.com/graph/api/sharepointrestoresession-post-siterestoreartifactsbulkadditionrequests?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteInclusionRule.md index e7064c9eff419..5c9dd760fb7a8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteInclusionRule.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresiteinclusionrule Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreSiteInclusionRule --- @@ -15,9 +15,6 @@ title: New-MgSolutionBackupRestoreSiteInclusionRule Create new navigation property to siteInclusionRules for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreSiteInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreSiteInclusionRule?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgSolutionBackupRestoreSiteInclusionRule [-ResponseHeadersVariable ] [-LastModifiedDateTime ] [-SiteExpression ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +37,6 @@ New-MgSolutionBackupRestoreSiteInclusionRule -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,6 +48,16 @@ This cmdlet has the following aliases, Create new navigation property to siteInclusionRules for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -534,7 +540,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: siteProtectionRule +BODYPARAMETER : siteProtectionRule [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -571,7 +577,7 @@ Read-only. [SiteExpression ]: Contains a site expression. For examples, see siteExpression example. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -582,7 +588,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -598,7 +604,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -612,27 +618,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgSolutionBackupRestoreSiteInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresiteinclusionrule) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresiteinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnit.md index e2088a413ffd7..dbe842bed2bf7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresiteprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreSiteProtectionUnit --- @@ -15,9 +15,6 @@ title: New-MgSolutionBackupRestoreSiteProtectionUnit Create new navigation property to siteProtectionUnits for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreSiteProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreSiteProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -31,7 +28,6 @@ New-MgSolutionBackupRestoreSiteProtectionUnit [-ResponseHeadersVariable [-SiteId ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -41,7 +37,6 @@ New-MgSolutionBackupRestoreSiteProtectionUnit -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,6 +48,16 @@ This cmdlet has the following aliases, Create new navigation property to siteProtectionUnits for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -582,7 +587,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: siteProtectionUnit +BODYPARAMETER : siteProtectionUnit [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -626,7 +631,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [SiteId ]: Unique identifier of the SharePoint site. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -637,7 +642,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -653,7 +658,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -667,27 +672,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgSolutionBackupRestoreSiteProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresiteprotectionunit) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresiteprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md index 42b3f6d2a810b..39a69515a853c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob --- @@ -15,9 +15,6 @@ title: New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob Create new navigation property to siteProtectionUnitsBulkAdditionJobs for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob?view=graph-powershell-beta) - ## SYNTAX ### CreateExpanded (Default) @@ -30,7 +27,7 @@ New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob [-ResponseHeadersVa [-SiteIds ] [-SiteWebUrls ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +38,6 @@ New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -53,6 +49,16 @@ This cmdlet has the following aliases, Create new navigation property to siteProtectionUnitsBulkAdditionJobs for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -555,7 +561,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: siteProtectionUnitsBulkAdditionJob +BODYPARAMETER : siteProtectionUnitsBulkAdditionJob [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -592,7 +598,7 @@ Read-only. [SiteIds ]: The list of SharePoint site IDs to add to the SharePoint protection policy. [SiteWebUrls ]: The list of SharePoint site URLs to add to the SharePoint protection policy. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -603,7 +609,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -619,7 +625,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -633,27 +639,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestore.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestore.md index d69209d61a6c7..62d8687c6c521 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestore.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestore.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestore Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestore --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestore Delete navigation property backupRestore for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestore](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestore?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgSolutionBackupRestore [-IfMatch ] [-ResponseHeadersVariable ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -39,6 +35,16 @@ This cmdlet has the following aliases, Delete navigation property backupRestore for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -319,27 +325,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [Remove-MgSolutionBackupRestore](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestore) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestore) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreBrowseSession.md new file mode 100644 index 0000000000000..ed939fbc19527 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreBrowseSession.md @@ -0,0 +1,425 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestorebrowsesession +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Remove-MgSolutionBackupRestoreBrowseSession +--- + +# Remove-MgSolutionBackupRestoreBrowseSession + +## SYNOPSIS + +Delete navigation property browseSessions for solutions + +## SYNTAX + +### Delete (Default) + +``` +Remove-MgSolutionBackupRestoreBrowseSession -BrowseSessionBaseId [-IfMatch ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### DeleteViaIdentity + +``` +Remove-MgSolutionBackupRestoreBrowseSession -InputObject + [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Delete navigation property browseSessions for solutions + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BrowseSessionBaseId + +The unique identifier of browseSessionBase + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Delete + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- cf +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -IfMatch + +ETag + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: DeleteViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -PassThru + +Returns true when the command succeeds + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WhatIf + +Runs the command in a mode that only reports what would happen without performing the actions. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- wi +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### System.Boolean + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [BrowseSessionBaseId ]: The unique identifier of browseSessionBase + [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule + [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit + [DriveProtectionUnitsBulkAdditionJobId ]: The unique identifier of driveProtectionUnitsBulkAdditionJob + [DriveRestoreArtifactId ]: The unique identifier of driveRestoreArtifact + [DriveRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of driveRestoreArtifactsBulkAdditionRequest + [ExchangeProtectionPolicyId ]: The unique identifier of exchangeProtectionPolicy + [ExchangeRestoreSessionId ]: The unique identifier of exchangeRestoreSession + [GranularDriveRestoreArtifactId ]: The unique identifier of granularDriveRestoreArtifact + [GranularMailboxRestoreArtifactId ]: The unique identifier of granularMailboxRestoreArtifact + [GranularSiteRestoreArtifactId ]: The unique identifier of granularSiteRestoreArtifact + [MailboxProtectionRuleId ]: The unique identifier of mailboxProtectionRule + [MailboxProtectionUnitId ]: The unique identifier of mailboxProtectionUnit + [MailboxProtectionUnitsBulkAdditionJobId ]: The unique identifier of mailboxProtectionUnitsBulkAdditionJob + [MailboxRestoreArtifactId ]: The unique identifier of mailboxRestoreArtifact + [MailboxRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of mailboxRestoreArtifactsBulkAdditionRequest + [NextFetchToken ]: Usage: nextFetchToken='{nextFetchToken}' + [OneDriveForBusinessBrowseSessionId ]: The unique identifier of oneDriveForBusinessBrowseSession + [OneDriveForBusinessProtectionPolicyId ]: The unique identifier of oneDriveForBusinessProtectionPolicy + [OneDriveForBusinessRestoreSessionId ]: The unique identifier of oneDriveForBusinessRestoreSession + [ProtectionPolicyBaseId ]: The unique identifier of protectionPolicyBase + [ProtectionUnitBaseId ]: The unique identifier of protectionUnitBase + [RestorePointId ]: The unique identifier of restorePoint + [RestoreSessionBaseId ]: The unique identifier of restoreSessionBase + [ServiceAppId ]: The unique identifier of serviceApp + [SharePointBrowseSessionId ]: The unique identifier of sharePointBrowseSession + [SharePointProtectionPolicyId ]: The unique identifier of sharePointProtectionPolicy + [SharePointRestoreSessionId ]: The unique identifier of sharePointRestoreSession + [SiteProtectionRuleId ]: The unique identifier of siteProtectionRule + [SiteProtectionUnitId ]: The unique identifier of siteProtectionUnit + [SiteProtectionUnitsBulkAdditionJobId ]: The unique identifier of siteProtectionUnitsBulkAdditionJob + [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact + [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestorebrowsesession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveInclusionRule.md index 1ea13d01b3ac9..a964680741810 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveInclusionRule.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoredriveinclusionrule Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreDriveInclusionRule --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreDriveInclusionRule Delete navigation property driveInclusionRules for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreDriveInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreDriveInclusionRule?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgSolutionBackupRestoreDriveInclusionRule -DriveProtectionRuleId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgSolutionBackupRestoreDriveInclusionRule -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property driveInclusionRules for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -379,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -417,27 +422,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreDriveInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoredriveinclusionrule) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoredriveinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnit.md index b4559a2907e71..f54691bb718f6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoredriveprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreDriveProtectionUnit --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreDriveProtectionUnit Delete navigation property driveProtectionUnits for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreDriveProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreDriveProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgSolutionBackupRestoreDriveProtectionUnit -DriveProtectionUnitId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgSolutionBackupRestoreDriveProtectionUnit -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property driveProtectionUnits for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -379,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -417,27 +422,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreDriveProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoredriveprotectionunit) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoredriveprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md index bf7e8f0f45217..e154828b31b57 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob Delete navigation property driveProtectionUnitsBulkAdditionJobs for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete navigation property driveProtectionUnitsBulkAdditionJobs for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -381,7 +386,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -419,27 +424,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeProtectionPolicy.md index 2ecac85390349..a6b951592a034 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeProtectionPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangeprotectionpolicy Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreExchangeProtectionPolicy --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreExchangeProtectionPolicy Delete navigation property exchangeProtectionPolicies for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreExchangeProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreExchangeProtectionPolicy?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgSolutionBackupRestoreExchangeProtectionPolicy -ExchangeProtectionPolicy [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgSolutionBackupRestoreExchangeProtectionPolicy -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property exchangeProtectionPolicies for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -379,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -417,27 +422,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreExchangeProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangeprotectionpolicy) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangeprotectionpolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSession.md index c7d1ea224a731..1ef4bba99b479 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresession Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreExchangeRestoreSession --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreExchangeRestoreSession Delete navigation property exchangeRestoreSessions for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreExchangeRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreExchangeRestoreSession?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgSolutionBackupRestoreExchangeRestoreSession -ExchangeRestoreSessionId < [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgSolutionBackupRestoreExchangeRestoreSession -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property exchangeRestoreSessions for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -379,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -417,27 +422,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreExchangeRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index 3f712d2a0dfd5..a862b4b432ca4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestor Delete navigation property granularMailboxRestoreArtifacts for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifa [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifa [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete navigation property granularMailboxRestoreArtifacts for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -402,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -440,27 +445,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md index 76bc9895be0d7..738a8a46cafd2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifac Delete navigation property mailboxRestoreArtifacts for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete navigation property mailboxRestoreArtifacts for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -402,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -440,27 +445,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md index 5ad8b62de3295..864d7a32b1a3e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifac Delete a mailboxRestoreArtifactsBulkAdditionRequest object associated with an exchangeRestoreSession. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAd [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAd [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete a mailboxRestoreArtifactsBulkAdditionRequest object associated with an exchangeRestoreSession. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -402,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -440,28 +445,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest) -- [Graph API Reference](https://learn.microsoft.com/graph/api/mailboxrestoreartifactsbulkadditionrequest-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest) +- [](https://learn.microsoft.com/graph/api/mailboxrestoreartifactsbulkadditionrequest-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxInclusionRule.md index ed394e4fdb375..f8035aa9cf327 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxInclusionRule.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoremailboxinclusionrule Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreMailboxInclusionRule --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreMailboxInclusionRule Delete navigation property mailboxInclusionRules for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreMailboxInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreMailboxInclusionRule?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgSolutionBackupRestoreMailboxInclusionRule -MailboxProtectionRuleId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgSolutionBackupRestoreMailboxInclusionRule -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property mailboxInclusionRules for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -379,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -417,27 +422,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreMailboxInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoremailboxinclusionrule) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoremailboxinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnit.md index 3adc26bea3d52..4a6fd753d3f19 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoremailboxprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreMailboxProtectionUnit --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreMailboxProtectionUnit Delete navigation property mailboxProtectionUnits for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreMailboxProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreMailboxProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgSolutionBackupRestoreMailboxProtectionUnit -MailboxProtectionUnitId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgSolutionBackupRestoreMailboxProtectionUnit -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property mailboxProtectionUnits for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -379,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -417,27 +422,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreMailboxProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoremailboxprotectionunit) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoremailboxprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md index 0cdfeef4112fe..b500929718ff0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob Delete navigation property mailboxProtectionUnitsBulkAdditionJobs for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete navigation property mailboxProtectionUnitsBulkAdditionJobs for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -381,7 +386,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -419,27 +424,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md new file mode 100644 index 0000000000000..5f551fbc948f7 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -0,0 +1,426 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessbrowsesession +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession +--- + +# Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession + +## SYNOPSIS + +Delete navigation property oneDriveForBusinessBrowseSessions for solutions + +## SYNTAX + +### Delete (Default) + +``` +Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession + -OneDriveForBusinessBrowseSessionId [-IfMatch ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### DeleteViaIdentity + +``` +Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession -InputObject + [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Delete navigation property oneDriveForBusinessBrowseSessions for solutions + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- cf +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -IfMatch + +ETag + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: DeleteViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -OneDriveForBusinessBrowseSessionId + +The unique identifier of oneDriveForBusinessBrowseSession + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Delete + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -PassThru + +Returns true when the command succeeds + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WhatIf + +Runs the command in a mode that only reports what would happen without performing the actions. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- wi +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### System.Boolean + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [BrowseSessionBaseId ]: The unique identifier of browseSessionBase + [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule + [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit + [DriveProtectionUnitsBulkAdditionJobId ]: The unique identifier of driveProtectionUnitsBulkAdditionJob + [DriveRestoreArtifactId ]: The unique identifier of driveRestoreArtifact + [DriveRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of driveRestoreArtifactsBulkAdditionRequest + [ExchangeProtectionPolicyId ]: The unique identifier of exchangeProtectionPolicy + [ExchangeRestoreSessionId ]: The unique identifier of exchangeRestoreSession + [GranularDriveRestoreArtifactId ]: The unique identifier of granularDriveRestoreArtifact + [GranularMailboxRestoreArtifactId ]: The unique identifier of granularMailboxRestoreArtifact + [GranularSiteRestoreArtifactId ]: The unique identifier of granularSiteRestoreArtifact + [MailboxProtectionRuleId ]: The unique identifier of mailboxProtectionRule + [MailboxProtectionUnitId ]: The unique identifier of mailboxProtectionUnit + [MailboxProtectionUnitsBulkAdditionJobId ]: The unique identifier of mailboxProtectionUnitsBulkAdditionJob + [MailboxRestoreArtifactId ]: The unique identifier of mailboxRestoreArtifact + [MailboxRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of mailboxRestoreArtifactsBulkAdditionRequest + [NextFetchToken ]: Usage: nextFetchToken='{nextFetchToken}' + [OneDriveForBusinessBrowseSessionId ]: The unique identifier of oneDriveForBusinessBrowseSession + [OneDriveForBusinessProtectionPolicyId ]: The unique identifier of oneDriveForBusinessProtectionPolicy + [OneDriveForBusinessRestoreSessionId ]: The unique identifier of oneDriveForBusinessRestoreSession + [ProtectionPolicyBaseId ]: The unique identifier of protectionPolicyBase + [ProtectionUnitBaseId ]: The unique identifier of protectionUnitBase + [RestorePointId ]: The unique identifier of restorePoint + [RestoreSessionBaseId ]: The unique identifier of restoreSessionBase + [ServiceAppId ]: The unique identifier of serviceApp + [SharePointBrowseSessionId ]: The unique identifier of sharePointBrowseSession + [SharePointProtectionPolicyId ]: The unique identifier of sharePointProtectionPolicy + [SharePointRestoreSessionId ]: The unique identifier of sharePointRestoreSession + [SiteProtectionRuleId ]: The unique identifier of siteProtectionRule + [SiteProtectionUnitId ]: The unique identifier of siteProtectionUnit + [SiteProtectionUnitsBulkAdditionJobId ]: The unique identifier of siteProtectionUnitsBulkAdditionJob + [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact + [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessbrowsesession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md index 1c94abdd64a8e..2cd9a3c4573f6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy Delete navigation property oneDriveForBusinessProtectionPolicies for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicy?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete navigation property oneDriveForBusinessProtectionPolicies for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -381,7 +386,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -419,27 +424,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md index f41cef1902b43..6a7581058ba1b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresession Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession Delete navigation property oneDriveForBusinessRestoreSessions for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSession?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete navigation property oneDriveForBusinessRestoreSessions for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -381,7 +386,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -419,27 +424,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md index 1e74cf3771e47..d30bb5b6638b4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveResto Delete navigation property driveRestoreArtifacts for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete navigation property driveRestoreArtifacts for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -402,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -440,27 +445,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md index 2292c64bbe2e7..6c70e8a249754 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveResto Delete a driveRestoreArtifactsBulkAdditionRequest object associated with a oneDriveForBusinessRestoreSession. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete a driveRestoreArtifactsBulkAdditionRequest object associated with a oneDriveForBusinessRestoreSession. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -402,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -440,28 +445,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest) -- [Graph API Reference](https://learn.microsoft.com/graph/api/driverestoreartifactsbulkadditionrequest-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest) +- [](https://learn.microsoft.com/graph/api/driverestoreartifactsbulkadditionrequest-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md new file mode 100644 index 0000000000000..2a7434bae1359 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -0,0 +1,448 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifact +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact +--- + +# Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact + +## SYNOPSIS + +Delete navigation property granularDriveRestoreArtifacts for solutions + +## SYNTAX + +### Delete (Default) + +``` +Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact + -GranularDriveRestoreArtifactId -OneDriveForBusinessRestoreSessionId + [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### DeleteViaIdentity + +``` +Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact + -InputObject [-IfMatch ] [-ResponseHeadersVariable ] + [-Break] [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Delete navigation property granularDriveRestoreArtifacts for solutions + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- cf +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -GranularDriveRestoreArtifactId + +The unique identifier of granularDriveRestoreArtifact + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Delete + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -IfMatch + +ETag + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: DeleteViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -OneDriveForBusinessRestoreSessionId + +The unique identifier of oneDriveForBusinessRestoreSession + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Delete + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -PassThru + +Returns true when the command succeeds + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WhatIf + +Runs the command in a mode that only reports what would happen without performing the actions. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- wi +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### System.Boolean + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [BrowseSessionBaseId ]: The unique identifier of browseSessionBase + [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule + [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit + [DriveProtectionUnitsBulkAdditionJobId ]: The unique identifier of driveProtectionUnitsBulkAdditionJob + [DriveRestoreArtifactId ]: The unique identifier of driveRestoreArtifact + [DriveRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of driveRestoreArtifactsBulkAdditionRequest + [ExchangeProtectionPolicyId ]: The unique identifier of exchangeProtectionPolicy + [ExchangeRestoreSessionId ]: The unique identifier of exchangeRestoreSession + [GranularDriveRestoreArtifactId ]: The unique identifier of granularDriveRestoreArtifact + [GranularMailboxRestoreArtifactId ]: The unique identifier of granularMailboxRestoreArtifact + [GranularSiteRestoreArtifactId ]: The unique identifier of granularSiteRestoreArtifact + [MailboxProtectionRuleId ]: The unique identifier of mailboxProtectionRule + [MailboxProtectionUnitId ]: The unique identifier of mailboxProtectionUnit + [MailboxProtectionUnitsBulkAdditionJobId ]: The unique identifier of mailboxProtectionUnitsBulkAdditionJob + [MailboxRestoreArtifactId ]: The unique identifier of mailboxRestoreArtifact + [MailboxRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of mailboxRestoreArtifactsBulkAdditionRequest + [NextFetchToken ]: Usage: nextFetchToken='{nextFetchToken}' + [OneDriveForBusinessBrowseSessionId ]: The unique identifier of oneDriveForBusinessBrowseSession + [OneDriveForBusinessProtectionPolicyId ]: The unique identifier of oneDriveForBusinessProtectionPolicy + [OneDriveForBusinessRestoreSessionId ]: The unique identifier of oneDriveForBusinessRestoreSession + [ProtectionPolicyBaseId ]: The unique identifier of protectionPolicyBase + [ProtectionUnitBaseId ]: The unique identifier of protectionUnitBase + [RestorePointId ]: The unique identifier of restorePoint + [RestoreSessionBaseId ]: The unique identifier of restoreSessionBase + [ServiceAppId ]: The unique identifier of serviceApp + [SharePointBrowseSessionId ]: The unique identifier of sharePointBrowseSession + [SharePointProtectionPolicyId ]: The unique identifier of sharePointProtectionPolicy + [SharePointRestoreSessionId ]: The unique identifier of sharePointRestoreSession + [SiteProtectionRuleId ]: The unique identifier of siteProtectionRule + [SiteProtectionUnitId ]: The unique identifier of siteProtectionUnit + [SiteProtectionUnitsBulkAdditionJobId ]: The unique identifier of siteProtectionUnitsBulkAdditionJob + [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact + [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestorePoint.md index db27e5152029d..5d08dd1f72d19 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestorePoint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestorepoint Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestorePoint --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestorePoint Delete navigation property restorePoints for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestorePoint](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestorePoint?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgSolutionBackupRestorePoint -RestorePointId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgSolutionBackupRestorePoint -InputObject [-IfMa [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property restorePoints for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -379,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -417,27 +422,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestorePoint](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestorepoint) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestorepoint) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreProtectionPolicy.md index 92667256f3a69..307e5368e142d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreProtectionPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreprotectionpolicy Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreProtectionPolicy --- @@ -19,9 +19,6 @@ When you delete a policy, all associated protection units are removed, and backu Existing backup data is retained according to the retention policy before it's offboarded. You can restore data using previous restore points even after deletion. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreProtectionPolicy?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -31,7 +28,6 @@ Remove-MgSolutionBackupRestoreProtectionPolicy -ProtectionPolicyBaseId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -41,7 +37,6 @@ Remove-MgSolutionBackupRestoreProtectionPolicy -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -57,6 +52,16 @@ When you delete a policy, all associated protection units are removed, and backu Existing backup data is retained according to the retention policy before it's offboarded. You can restore data using previous restore points even after deletion. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -387,7 +392,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -425,28 +430,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreprotectionpolicy) -- [Graph API Reference](https://learn.microsoft.com/graph/api/protectionpolicybase-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreprotectionpolicy) +- [](https://learn.microsoft.com/graph/api/protectionpolicybase-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreServiceApp.md index 4ce0a7ce5b996..a6bc8e98e7f37 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreServiceApp.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreserviceapp Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreServiceApp --- @@ -16,9 +16,6 @@ title: Remove-MgSolutionBackupRestoreServiceApp Delete a serviceApp. When this API is called via Microsoft Graph PowerShell, it returns a 403 Forbidden response code. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreServiceApp](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreServiceApp?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgSolutionBackupRestoreServiceApp -ServiceAppId [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +34,6 @@ Remove-MgSolutionBackupRestoreServiceApp -InputObject [ [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete a serviceApp. When this API is called via Microsoft Graph PowerShell, it returns a 403 Forbidden response code. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -381,7 +386,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -419,28 +424,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreServiceApp](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreserviceapp) -- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-delete-serviceapps?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreserviceapp) +- [](https://learn.microsoft.com/graph/api/backuprestoreroot-delete-serviceapps?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSession.md index abfc9bcf8fe39..cfd8a29dda8f5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresession Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreSession --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreSession Delete a draft restoreSessionBase object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreSession?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgSolutionBackupRestoreSession -RestoreSessionBaseId [-IfMatch < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgSolutionBackupRestoreSession -InputObject [-If [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete a draft restoreSessionBase object. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -379,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -417,28 +422,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresession) -- [Graph API Reference](https://learn.microsoft.com/graph/api/restoresessionbase-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresession) +- [](https://learn.microsoft.com/graph/api/restoresessionbase-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointBrowseSession.md new file mode 100644 index 0000000000000..8629c35891e09 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -0,0 +1,425 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointbrowsesession +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Remove-MgSolutionBackupRestoreSharePointBrowseSession +--- + +# Remove-MgSolutionBackupRestoreSharePointBrowseSession + +## SYNOPSIS + +Delete navigation property sharePointBrowseSessions for solutions + +## SYNTAX + +### Delete (Default) + +``` +Remove-MgSolutionBackupRestoreSharePointBrowseSession -SharePointBrowseSessionId + [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### DeleteViaIdentity + +``` +Remove-MgSolutionBackupRestoreSharePointBrowseSession -InputObject + [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Delete navigation property sharePointBrowseSessions for solutions + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- cf +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -IfMatch + +ETag + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: DeleteViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -PassThru + +Returns true when the command succeeds + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -SharePointBrowseSessionId + +The unique identifier of sharePointBrowseSession + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Delete + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WhatIf + +Runs the command in a mode that only reports what would happen without performing the actions. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- wi +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### System.Boolean + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [BrowseSessionBaseId ]: The unique identifier of browseSessionBase + [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule + [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit + [DriveProtectionUnitsBulkAdditionJobId ]: The unique identifier of driveProtectionUnitsBulkAdditionJob + [DriveRestoreArtifactId ]: The unique identifier of driveRestoreArtifact + [DriveRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of driveRestoreArtifactsBulkAdditionRequest + [ExchangeProtectionPolicyId ]: The unique identifier of exchangeProtectionPolicy + [ExchangeRestoreSessionId ]: The unique identifier of exchangeRestoreSession + [GranularDriveRestoreArtifactId ]: The unique identifier of granularDriveRestoreArtifact + [GranularMailboxRestoreArtifactId ]: The unique identifier of granularMailboxRestoreArtifact + [GranularSiteRestoreArtifactId ]: The unique identifier of granularSiteRestoreArtifact + [MailboxProtectionRuleId ]: The unique identifier of mailboxProtectionRule + [MailboxProtectionUnitId ]: The unique identifier of mailboxProtectionUnit + [MailboxProtectionUnitsBulkAdditionJobId ]: The unique identifier of mailboxProtectionUnitsBulkAdditionJob + [MailboxRestoreArtifactId ]: The unique identifier of mailboxRestoreArtifact + [MailboxRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of mailboxRestoreArtifactsBulkAdditionRequest + [NextFetchToken ]: Usage: nextFetchToken='{nextFetchToken}' + [OneDriveForBusinessBrowseSessionId ]: The unique identifier of oneDriveForBusinessBrowseSession + [OneDriveForBusinessProtectionPolicyId ]: The unique identifier of oneDriveForBusinessProtectionPolicy + [OneDriveForBusinessRestoreSessionId ]: The unique identifier of oneDriveForBusinessRestoreSession + [ProtectionPolicyBaseId ]: The unique identifier of protectionPolicyBase + [ProtectionUnitBaseId ]: The unique identifier of protectionUnitBase + [RestorePointId ]: The unique identifier of restorePoint + [RestoreSessionBaseId ]: The unique identifier of restoreSessionBase + [ServiceAppId ]: The unique identifier of serviceApp + [SharePointBrowseSessionId ]: The unique identifier of sharePointBrowseSession + [SharePointProtectionPolicyId ]: The unique identifier of sharePointProtectionPolicy + [SharePointRestoreSessionId ]: The unique identifier of sharePointRestoreSession + [SiteProtectionRuleId ]: The unique identifier of siteProtectionRule + [SiteProtectionUnitId ]: The unique identifier of siteProtectionUnit + [SiteProtectionUnitsBulkAdditionJobId ]: The unique identifier of siteProtectionUnitsBulkAdditionJob + [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact + [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointbrowsesession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointProtectionPolicy.md index bd654fb8afb63..d3a1cd43abbcc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointProtectionPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointprotectionpolicy Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreSharePointProtectionPolicy --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreSharePointProtectionPolicy Delete navigation property sharePointProtectionPolicies for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreSharePointProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreSharePointProtectionPolicy?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgSolutionBackupRestoreSharePointProtectionPolicy -SharePointProtectionPo [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgSolutionBackupRestoreSharePointProtectionPolicy -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property sharePointProtectionPolicies for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -379,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -417,27 +422,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreSharePointProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointprotectionpolicy) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointprotectionpolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSession.md index fbd23868d3d99..037e5c3e2a010 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresession Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreSharePointRestoreSession --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreSharePointRestoreSession Delete navigation property sharePointRestoreSessions for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreSharePointRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreSharePointRestoreSession?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgSolutionBackupRestoreSharePointRestoreSession -SharePointRestoreSession [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgSolutionBackupRestoreSharePointRestoreSession -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property sharePointRestoreSessions for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -379,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -417,27 +422,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreSharePointRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md new file mode 100644 index 0000000000000..a25794b896016 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -0,0 +1,448 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifact +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact +--- + +# Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact + +## SYNOPSIS + +Delete navigation property granularSiteRestoreArtifacts for solutions + +## SYNTAX + +### Delete (Default) + +``` +Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact + -GranularSiteRestoreArtifactId -SharePointRestoreSessionId [-IfMatch ] + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### DeleteViaIdentity + +``` +Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact + -InputObject [-IfMatch ] [-ResponseHeadersVariable ] + [-Break] [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Delete navigation property granularSiteRestoreArtifacts for solutions + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- cf +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -GranularSiteRestoreArtifactId + +The unique identifier of granularSiteRestoreArtifact + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Delete + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -IfMatch + +ETag + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: DeleteViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -PassThru + +Returns true when the command succeeds + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -SharePointRestoreSessionId + +The unique identifier of sharePointRestoreSession + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: Delete + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WhatIf + +Runs the command in a mode that only reports what would happen without performing the actions. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- wi +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### System.Boolean + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +INPUTOBJECT : Identity Parameter + [BrowseSessionBaseId ]: The unique identifier of browseSessionBase + [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule + [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit + [DriveProtectionUnitsBulkAdditionJobId ]: The unique identifier of driveProtectionUnitsBulkAdditionJob + [DriveRestoreArtifactId ]: The unique identifier of driveRestoreArtifact + [DriveRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of driveRestoreArtifactsBulkAdditionRequest + [ExchangeProtectionPolicyId ]: The unique identifier of exchangeProtectionPolicy + [ExchangeRestoreSessionId ]: The unique identifier of exchangeRestoreSession + [GranularDriveRestoreArtifactId ]: The unique identifier of granularDriveRestoreArtifact + [GranularMailboxRestoreArtifactId ]: The unique identifier of granularMailboxRestoreArtifact + [GranularSiteRestoreArtifactId ]: The unique identifier of granularSiteRestoreArtifact + [MailboxProtectionRuleId ]: The unique identifier of mailboxProtectionRule + [MailboxProtectionUnitId ]: The unique identifier of mailboxProtectionUnit + [MailboxProtectionUnitsBulkAdditionJobId ]: The unique identifier of mailboxProtectionUnitsBulkAdditionJob + [MailboxRestoreArtifactId ]: The unique identifier of mailboxRestoreArtifact + [MailboxRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of mailboxRestoreArtifactsBulkAdditionRequest + [NextFetchToken ]: Usage: nextFetchToken='{nextFetchToken}' + [OneDriveForBusinessBrowseSessionId ]: The unique identifier of oneDriveForBusinessBrowseSession + [OneDriveForBusinessProtectionPolicyId ]: The unique identifier of oneDriveForBusinessProtectionPolicy + [OneDriveForBusinessRestoreSessionId ]: The unique identifier of oneDriveForBusinessRestoreSession + [ProtectionPolicyBaseId ]: The unique identifier of protectionPolicyBase + [ProtectionUnitBaseId ]: The unique identifier of protectionUnitBase + [RestorePointId ]: The unique identifier of restorePoint + [RestoreSessionBaseId ]: The unique identifier of restoreSessionBase + [ServiceAppId ]: The unique identifier of serviceApp + [SharePointBrowseSessionId ]: The unique identifier of sharePointBrowseSession + [SharePointProtectionPolicyId ]: The unique identifier of sharePointProtectionPolicy + [SharePointRestoreSessionId ]: The unique identifier of sharePointRestoreSession + [SiteProtectionRuleId ]: The unique identifier of siteProtectionRule + [SiteProtectionUnitId ]: The unique identifier of siteProtectionUnit + [SiteProtectionUnitsBulkAdditionJobId ]: The unique identifier of siteProtectionUnitsBulkAdditionJob + [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact + [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md index aafa1a146c572..7eb9e060992eb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact Delete navigation property siteRestoreArtifacts for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete navigation property siteRestoreArtifacts for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -402,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -440,27 +445,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md index 59e9403d2880b..1d1943e02bbea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact Delete a siteRestoreArtifactsBulkAdditionRequest object associated with a sharepointRestoreSession. -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdd [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdd [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete a siteRestoreArtifactsBulkAdditionRequest object associated with a sharepointRestoreSession. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -402,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -440,28 +445,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest) -- [Graph API Reference](https://learn.microsoft.com/graph/api/siterestoreartifactsbulkadditionrequest-delete?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest) +- [](https://learn.microsoft.com/graph/api/siterestoreartifactsbulkadditionrequest-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteInclusionRule.md index dcd7ea928c65e..6788735db6a16 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteInclusionRule.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresiteinclusionrule Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreSiteInclusionRule --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreSiteInclusionRule Delete navigation property siteInclusionRules for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreSiteInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreSiteInclusionRule?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgSolutionBackupRestoreSiteInclusionRule -SiteProtectionRuleId [ [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgSolutionBackupRestoreSiteInclusionRule -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property siteInclusionRules for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -379,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -417,27 +422,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreSiteInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresiteinclusionrule) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresiteinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnit.md index b10eaad338006..faa6701d32b2b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresiteprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreSiteProtectionUnit --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreSiteProtectionUnit Delete navigation property siteProtectionUnits for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreSiteProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreSiteProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -27,7 +24,6 @@ Remove-MgSolutionBackupRestoreSiteProtectionUnit -SiteProtectionUnitId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +33,6 @@ Remove-MgSolutionBackupRestoreSiteProtectionUnit -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Delete navigation property siteProtectionUnits for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -379,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -417,27 +422,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreSiteProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresiteprotectionunit) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresiteprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md index 754dcae6d87f7..268d82ee61820 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob --- @@ -15,9 +15,6 @@ title: Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob Delete navigation property siteProtectionUnitsBulkAdditionJobs for solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob?view=graph-powershell-beta) - ## SYNTAX ### Delete (Default) @@ -28,7 +25,6 @@ Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +35,6 @@ Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -51,6 +46,16 @@ This cmdlet has the following aliases, Delete navigation property siteProtectionUnitsBulkAdditionJobs for solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -381,7 +386,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -419,27 +424,4 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md index a6fc45e3dab7e..47cce9d79d122 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/search-mgsolutionbackuprestorepoint Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Search-MgSolutionBackupRestorePoint --- @@ -15,9 +15,6 @@ title: Search-MgSolutionBackupRestorePoint Search for the restorePoint objects associated with a protectionUnit. -> [!NOTE] -> To view the beta release of this cmdlet, view [Search-MgBetaSolutionBackupRestorePoint](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Search-MgBetaSolutionBackupRestorePoint?view=graph-powershell-beta) - ## SYNTAX ### SearchExpanded (Default) @@ -29,7 +26,6 @@ Search-MgSolutionBackupRestorePoint [-ResponseHeadersVariable ] [-RestorePointPreference ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Search @@ -40,7 +36,6 @@ Search-MgSolutionBackupRestorePoint [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -52,13 +47,15 @@ This cmdlet has the following aliases, Search for the restorePoint objects associated with a protectionUnit. -**Permissions** +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 -| Permission type | Permissions (from least to most privileged) | -| --------------- | ------------------------------------------ | -| Delegated (work or school account) | BackupRestore-Search.Read.All, | -| Delegated (personal Microsoft account) | Not supported | -| Application | BackupRestore-Search.Read.All, | +{{ Add code here }} ## PARAMETERS @@ -107,7 +104,7 @@ HelpMessage: '' ### -BodyParameter - +. To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -257,7 +254,7 @@ HelpMessage: '' ### -ProtectionUnitIds - +. ```yaml Type: System.String[] @@ -455,12 +452,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -ARTIFACTQUERY ``: artifactQuery +ARTIFACTQUERY : artifactQuery [(Any) ]: This indicates any property can be added to this object. [ArtifactType ]: restorableArtifact [QueryExpression ]: Specifies criteria to retrieve artifacts. -BODYPARAMETER ``: . +BODYPARAMETER : . [(Any) ]: This indicates any property can be added to this object. [ArtifactQuery ]: artifactQuery [(Any) ]: This indicates any property can be added to this object. @@ -474,7 +471,7 @@ BODYPARAMETER `]: restorePointPreference [Tags ]: restorePointTags -PROTECTIONTIMEPERIOD ``: timePeriod +PROTECTIONTIMEPERIOD : timePeriod [(Any) ]: This indicates any property can be added to this object. [EndDateTime ]: The date time of the end of the time period. [StartDateTime ]: The date time of the start of the time period. @@ -482,28 +479,5 @@ PROTECTIONTIMEPERIOD ``: timePeriod ## RELATED LINKS -- [Search-MgSolutionBackupRestorePoint](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/search-mgsolutionbackuprestorepoint) -- [Graph API Reference](https://learn.microsoft.com/graph/api/restorepoint-search?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/search-mgsolutionbackuprestorepoint) +- [](https://learn.microsoft.com/graph/api/restorepoint-search?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Stop-MgSolutionBackupRestoreProtectionUnitOffboard.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Stop-MgSolutionBackupRestoreProtectionUnitOffboard.md index 90bc0ba241859..df27dabe8f25a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Stop-MgSolutionBackupRestoreProtectionUnitOffboard.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Stop-MgSolutionBackupRestoreProtectionUnitOffboard.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/stop-mgsolutionbackuprestoreprotectionunitoffboard Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Stop-MgSolutionBackupRestoreProtectionUnitOffboard --- @@ -15,9 +15,6 @@ title: Stop-MgSolutionBackupRestoreProtectionUnitOffboard Cancel the offboarding of a protectionUnitBase. -> [!NOTE] -> To view the beta release of this cmdlet, view [Stop-MgBetaSolutionBackupRestoreProtectionUnitOffboard](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Stop-MgBetaSolutionBackupRestoreProtectionUnitOffboard?view=graph-powershell-beta) - ## SYNTAX ### Cancel (Default) @@ -27,7 +24,6 @@ Stop-MgSolutionBackupRestoreProtectionUnitOffboard -ProtectionUnitBaseId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CancelViaIdentity @@ -37,7 +33,6 @@ Stop-MgSolutionBackupRestoreProtectionUnitOffboard -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -49,6 +44,16 @@ This cmdlet has the following aliases, Cancel the offboarding of a protectionUnitBase. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -Break @@ -337,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -375,28 +380,5 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [Stop-MgSolutionBackupRestoreProtectionUnitOffboard](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/stop-mgsolutionbackuprestoreprotectionunitoffboard) -- [Graph API Reference](https://learn.microsoft.com/graph/api/protectionunitbase-canceloffboard?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/stop-mgsolutionbackuprestoreprotectionunitoffboard) +- [](https://learn.microsoft.com/graph/api/protectionunitbase-canceloffboard?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md index 29796bbf83ec0..4815bd331eb33 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestore Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestore --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestore Update the navigation property backupRestore in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestore](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestore?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -49,7 +46,7 @@ Update-MgSolutionBackupRestore [-ResponseHeadersVariable ] [-SiteProtectionUnitsBulkAdditionJobs ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -59,7 +56,6 @@ Update-MgSolutionBackupRestore -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -71,6 +67,16 @@ This cmdlet has the following aliases, Update the navigation property backupRestore in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -139,7 +145,7 @@ HelpMessage: '' ### -BrowseSessions - +The list of browse sessions in the tenant. To construct, see NOTES section for BROWSESESSIONS properties and create a hash table. ```yaml @@ -227,7 +233,7 @@ HelpMessage: '' ### -DriveProtectionUnitsBulkAdditionJobs - +. To construct, see NOTES section for DRIVEPROTECTIONUNITSBULKADDITIONJOBS properties and create a hash table. ```yaml @@ -422,7 +428,7 @@ HelpMessage: '' ### -MailboxProtectionUnitsBulkAdditionJobs - +. To construct, see NOTES section for MAILBOXPROTECTIONUNITSBULKADDITIONJOBS properties and create a hash table. ```yaml @@ -444,7 +450,7 @@ HelpMessage: '' ### -OneDriveForBusinessBrowseSessions - +The list of OneDrive for Business browse sessions in the tenant. To construct, see NOTES section for ONEDRIVEFORBUSINESSBROWSESESSIONS properties and create a hash table. ```yaml @@ -727,7 +733,7 @@ HelpMessage: '' ### -SharePointBrowseSessions - +The list of SharePoint browse sessions in the tenant. To construct, see NOTES section for SHAREPOINTBROWSESESSIONS properties and create a hash table. ```yaml @@ -837,7 +843,7 @@ HelpMessage: '' ### -SiteProtectionUnitsBulkAdditionJobs - +. To construct, see NOTES section for SITEPROTECTIONUNITSBULKADDITIONJOBS properties and create a hash table. ```yaml @@ -909,15 +915,17 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: backupRestoreRoot +BODYPARAMETER : backupRestoreRoot [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. - [BrowseSessions ]: + [BrowseSessions ]: The list of browse sessions in the tenant. [Id ]: The unique identifier for an entity. Read-only. - [BackupSizeInBytes ]: - [CreatedDateTime ]: + [BackupSizeInBytes ]: The size of the backup in bytes. + [CreatedDateTime ]: The date and time when the browse session was created. +The timestamp type represents date and time information using ISO 8601 format and is always in UTC. +For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Error ]: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. @@ -933,8 +941,8 @@ Read-only. [Target ]: The target of the error. [Message ]: A non-localized message for the developer. [Target ]: The target of the error. - [ExpirationDateTime ]: - [RestorePointDateTime ]: + [ExpirationDateTime ]: The date and time after which the browse session is deleted automatically. + [RestorePointDateTime ]: The date and time of the restore point on which the browse session is created. [RestorePointId ]: [Status ]: browseSessionStatus [DriveInclusionRules ]: The list of drive inclusion rules applied to the tenant. @@ -1143,17 +1151,19 @@ Read-only. [MailboxInclusionRules ]: The list of mailbox inclusion rules applied to the tenant. [MailboxProtectionUnits ]: The list of mailbox protection units in the tenant. [MailboxProtectionUnitsBulkAdditionJobs ]: - [OneDriveForBusinessBrowseSessions ]: - [BackupSizeInBytes ]: - [CreatedDateTime ]: + [OneDriveForBusinessBrowseSessions ]: The list of OneDrive for Business browse sessions in the tenant. + [BackupSizeInBytes ]: The size of the backup in bytes. + [CreatedDateTime ]: The date and time when the browse session was created. +The timestamp type represents date and time information using ISO 8601 format and is always in UTC. +For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Error ]: publicError - [ExpirationDateTime ]: - [RestorePointDateTime ]: + [ExpirationDateTime ]: The date and time after which the browse session is deleted automatically. + [RestorePointDateTime ]: The date and time of the restore point on which the browse session is created. [RestorePointId ]: [Status ]: browseSessionStatus [Id ]: The unique identifier for an entity. Read-only. - [DirectoryObjectId ]: + [DirectoryObjectId ]: Id of the backed-up OneDrive. [OneDriveForBusinessProtectionPolicies ]: The list of OneDrive for Business protection policies in the tenant. [CreatedBy ]: identitySet [CreatedDateTime ]: The time of creation of the policy. @@ -1210,19 +1220,20 @@ Future value; don't use. Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding OneDrive for work or school restore session in a bulk operation. [Drives ]: The list of email addresses that are added to the corresponding OneDrive for work or school restore session in a bulk operation. - [GranularDriveRestoreArtifacts ]: - [BrowseSessionId ]: - [CompletionDateTime ]: - [RestorePointDateTime ]: - [RestoredItemKey ]: - [RestoredItemPath ]: - [RestoredItemWebUrl ]: - [StartDateTime ]: + [GranularDriveRestoreArtifacts ]: A collection of browse session ID and item key details that can be used to restore OneDrive for work or school files and folders. + [BrowseSessionId ]: The unique identifier of the browseSession + [CompletionDateTime ]: Date time when the artifact's restoration completes. + [RestorePointDateTime ]: The restore point date time to which the artifact is restored. + [RestoredItemKey ]: The unique identifier for the restored artifact. + [RestoredItemPath ]: The path of the restored artifact. +It's the path of the folder where all the artifacts are restored within a granular restore session. + [RestoredItemWebUrl ]: The web url of the restored artifact. + [StartDateTime ]: The start time of the restoration. [Status ]: artifactRestoreStatus - [WebUrl ]: + [WebUrl ]: The original web url of the artifact being restored. [Id ]: The unique identifier for an entity. Read-only. - [DirectoryObjectId ]: + [DirectoryObjectId ]: Id of the drive in which artifact is present. [ProtectionPolicies ]: List of protection policies in the tenant. [Id ]: The unique identifier for an entity. Read-only. @@ -1267,17 +1278,19 @@ Read-only. [LastModifiedDateTime ]: Timestamp of the last modification of the entity. [RestoreAllowedTillDateTime ]: The expiration time of the restoration allowed period. [Status ]: backupServiceStatus - [SharePointBrowseSessions ]: - [BackupSizeInBytes ]: - [CreatedDateTime ]: + [SharePointBrowseSessions ]: The list of SharePoint browse sessions in the tenant. + [BackupSizeInBytes ]: The size of the backup in bytes. + [CreatedDateTime ]: The date and time when the browse session was created. +The timestamp type represents date and time information using ISO 8601 format and is always in UTC. +For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Error ]: publicError - [ExpirationDateTime ]: - [RestorePointDateTime ]: + [ExpirationDateTime ]: The date and time after which the browse session is deleted automatically. + [RestorePointDateTime ]: The date and time of the restore point on which the browse session is created. [RestorePointId ]: [Status ]: browseSessionStatus [Id ]: The unique identifier for an entity. Read-only. - [SiteId ]: + [SiteId ]: Id of the backed-up SharePoint site. [SharePointProtectionPolicies ]: The list of SharePoint protection policies in the tenant. [CreatedBy ]: identitySet [CreatedDateTime ]: The time of creation of the policy. @@ -1345,19 +1358,20 @@ Read-only. [Status ]: restoreSessionStatus [Id ]: The unique identifier for an entity. Read-only. - [GranularSiteRestoreArtifacts ]: - [BrowseSessionId ]: - [CompletionDateTime ]: - [RestorePointDateTime ]: - [RestoredItemKey ]: - [RestoredItemPath ]: - [RestoredItemWebUrl ]: - [StartDateTime ]: + [GranularSiteRestoreArtifacts ]: A collection of browse session ID and item key details that can be used to restore SharePoint files and folders. + [BrowseSessionId ]: The unique identifier of the browseSession + [CompletionDateTime ]: Date time when the artifact's restoration completes. + [RestorePointDateTime ]: The restore point date time to which the artifact is restored. + [RestoredItemKey ]: The unique identifier for the restored artifact. + [RestoredItemPath ]: The path of the restored artifact. +It's the path of the folder where all the artifacts are restored within a granular restore session. + [RestoredItemWebUrl ]: The web url of the restored artifact. + [StartDateTime ]: The start time of the restoration. [Status ]: artifactRestoreStatus - [WebUrl ]: + [WebUrl ]: The original web url of the artifact being restored. [Id ]: The unique identifier for an entity. Read-only. - [SiteId ]: + [SiteId ]: Id of the site in which artifact is present. [SiteRestoreArtifacts ]: A collection of restore points and destination details that can be used to restore SharePoint sites. [CompletionDateTime ]: The time when restoration of restore artifact is completed. [DestinationType ]: destinationType @@ -1391,11 +1405,13 @@ Read-only. [SiteProtectionUnits ]: The list of site protection units in the tenant. [SiteProtectionUnitsBulkAdditionJobs ]: -BROWSESESSIONS : . +BROWSESESSIONS : The list of browse sessions in the tenant. [Id ]: The unique identifier for an entity. Read-only. - [BackupSizeInBytes ]: - [CreatedDateTime ]: + [BackupSizeInBytes ]: The size of the backup in bytes. + [CreatedDateTime ]: The date and time when the browse session was created. +The timestamp type represents date and time information using ISO 8601 format and is always in UTC. +For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Error ]: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. @@ -1411,8 +1427,8 @@ Read-only. [Target ]: The target of the error. [Message ]: A non-localized message for the developer. [Target ]: The target of the error. - [ExpirationDateTime ]: - [RestorePointDateTime ]: + [ExpirationDateTime ]: The date and time after which the browse session is deleted automatically. + [RestorePointDateTime ]: The date and time of the restore point on which the browse session is created. [RestorePointId ]: [Status ]: browseSessionStatus @@ -1845,9 +1861,11 @@ Read-only. [DirectoryObjectIds ]: The list of Exchange directoryObjectIds to add to the Exchange protection policy. [Mailboxes ]: The list of Exchange email addresses to add to the Exchange protection policy. -ONEDRIVEFORBUSINESSBROWSESESSIONS : . - [BackupSizeInBytes ]: - [CreatedDateTime ]: +ONEDRIVEFORBUSINESSBROWSESESSIONS : The list of OneDrive for Business browse sessions in the tenant. + [BackupSizeInBytes ]: The size of the backup in bytes. + [CreatedDateTime ]: The date and time when the browse session was created. +The timestamp type represents date and time information using ISO 8601 format and is always in UTC. +For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Error ]: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. @@ -1863,13 +1881,13 @@ ONEDRIVEFORBUSINESSBROWSESESSIONS ]: The target of the error. [Message ]: A non-localized message for the developer. [Target ]: The target of the error. - [ExpirationDateTime ]: - [RestorePointDateTime ]: + [ExpirationDateTime ]: The date and time after which the browse session is deleted automatically. + [RestorePointDateTime ]: The date and time of the restore point on which the browse session is created. [RestorePointId ]: [Status ]: browseSessionStatus [Id ]: The unique identifier for an entity. Read-only. - [DirectoryObjectId ]: + [DirectoryObjectId ]: Id of the backed-up OneDrive. ONEDRIVEFORBUSINESSPROTECTIONPOLICIES : The list of OneDrive for Business protection policies in the tenant. [CreatedBy ]: identitySet @@ -2054,19 +2072,20 @@ Future value; don't use. Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding OneDrive for work or school restore session in a bulk operation. [Drives ]: The list of email addresses that are added to the corresponding OneDrive for work or school restore session in a bulk operation. - [GranularDriveRestoreArtifacts ]: - [BrowseSessionId ]: - [CompletionDateTime ]: - [RestorePointDateTime ]: - [RestoredItemKey ]: - [RestoredItemPath ]: - [RestoredItemWebUrl ]: - [StartDateTime ]: + [GranularDriveRestoreArtifacts ]: A collection of browse session ID and item key details that can be used to restore OneDrive for work or school files and folders. + [BrowseSessionId ]: The unique identifier of the browseSession + [CompletionDateTime ]: Date time when the artifact's restoration completes. + [RestorePointDateTime ]: The restore point date time to which the artifact is restored. + [RestoredItemKey ]: The unique identifier for the restored artifact. + [RestoredItemPath ]: The path of the restored artifact. +It's the path of the folder where all the artifacts are restored within a granular restore session. + [RestoredItemWebUrl ]: The web url of the restored artifact. + [StartDateTime ]: The start time of the restoration. [Status ]: artifactRestoreStatus - [WebUrl ]: + [WebUrl ]: The original web url of the artifact being restored. [Id ]: The unique identifier for an entity. Read-only. - [DirectoryObjectId ]: + [DirectoryObjectId ]: Id of the drive in which artifact is present. PROTECTIONPOLICIES : List of protection policies in the tenant. [Id ]: The unique identifier for an entity. @@ -2248,7 +2267,7 @@ For example, in the access reviews decisions API, this property might record the [RegistrationDateTime ]: Timestamp of the creation of the service app entity. [Status ]: serviceAppStatus -SERVICESTATUS ``: serviceStatus +SERVICESTATUS : serviceStatus [(Any) ]: This indicates any property can be added to this object. [BackupServiceConsumer ]: backupServiceConsumer [DisableReason ]: disableReason @@ -2267,9 +2286,11 @@ For example, in the access reviews decisions API, this property might record the [RestoreAllowedTillDateTime ]: The expiration time of the restoration allowed period. [Status ]: backupServiceStatus -SHAREPOINTBROWSESESSIONS : . - [BackupSizeInBytes ]: - [CreatedDateTime ]: +SHAREPOINTBROWSESESSIONS : The list of SharePoint browse sessions in the tenant. + [BackupSizeInBytes ]: The size of the backup in bytes. + [CreatedDateTime ]: The date and time when the browse session was created. +The timestamp type represents date and time information using ISO 8601 format and is always in UTC. +For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Error ]: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. @@ -2285,13 +2306,13 @@ SHAREPOINTBROWSESESSIONS : . [Target ]: The target of the error. [Message ]: A non-localized message for the developer. [Target ]: The target of the error. - [ExpirationDateTime ]: - [RestorePointDateTime ]: + [ExpirationDateTime ]: The date and time after which the browse session is deleted automatically. + [RestorePointDateTime ]: The date and time of the restore point on which the browse session is created. [RestorePointId ]: [Status ]: browseSessionStatus [Id ]: The unique identifier for an entity. Read-only. - [SiteId ]: + [SiteId ]: Id of the backed-up SharePoint site. SHAREPOINTPROTECTIONPOLICIES : The list of SharePoint protection policies in the tenant. [CreatedBy ]: identitySet @@ -2419,19 +2440,20 @@ For example, in the access reviews decisions API, this property might record the [Status ]: restoreSessionStatus [Id ]: The unique identifier for an entity. Read-only. - [GranularSiteRestoreArtifacts ]: - [BrowseSessionId ]: - [CompletionDateTime ]: - [RestorePointDateTime ]: - [RestoredItemKey ]: - [RestoredItemPath ]: - [RestoredItemWebUrl ]: - [StartDateTime ]: + [GranularSiteRestoreArtifacts ]: A collection of browse session ID and item key details that can be used to restore SharePoint files and folders. + [BrowseSessionId ]: The unique identifier of the browseSession + [CompletionDateTime ]: Date time when the artifact's restoration completes. + [RestorePointDateTime ]: The restore point date time to which the artifact is restored. + [RestoredItemKey ]: The unique identifier for the restored artifact. + [RestoredItemPath ]: The path of the restored artifact. +It's the path of the folder where all the artifacts are restored within a granular restore session. + [RestoredItemWebUrl ]: The web url of the restored artifact. + [StartDateTime ]: The start time of the restoration. [Status ]: artifactRestoreStatus - [WebUrl ]: + [WebUrl ]: The original web url of the artifact being restored. [Id ]: The unique identifier for an entity. Read-only. - [SiteId ]: + [SiteId ]: Id of the site in which artifact is present. [SiteRestoreArtifacts ]: A collection of restore points and destination details that can be used to restore SharePoint sites. [CompletionDateTime ]: The time when restoration of restore artifact is completed. [DestinationType ]: destinationType @@ -2608,27 +2630,4 @@ Read-only. ## RELATED LINKS -- [Update-MgSolutionBackupRestore](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestore) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestore) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md new file mode 100644 index 0000000000000..962a808eed726 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md @@ -0,0 +1,744 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestorebrowsesession +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Update-MgSolutionBackupRestoreBrowseSession +--- + +# Update-MgSolutionBackupRestoreBrowseSession + +## SYNOPSIS + +Update the navigation property browseSessions in solutions + +## SYNTAX + +### UpdateExpanded (Default) + +``` +Update-MgSolutionBackupRestoreBrowseSession -BrowseSessionBaseId + [-ResponseHeadersVariable ] [-AdditionalProperties ] + [-BackupSizeInBytes ] [-CreatedDateTime ] [-Error ] + [-ExpirationDateTime ] [-Id ] [-RestorePointDateTime ] + [-RestorePointId ] [-Status ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### Update + +``` +Update-MgSolutionBackupRestoreBrowseSession -BrowseSessionBaseId + -BodyParameter [-ResponseHeadersVariable ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### UpdateViaIdentityExpanded + +``` +Update-MgSolutionBackupRestoreBrowseSession -InputObject + [-ResponseHeadersVariable ] [-AdditionalProperties ] + [-BackupSizeInBytes ] [-CreatedDateTime ] [-Error ] + [-ExpirationDateTime ] [-Id ] [-RestorePointDateTime ] + [-RestorePointId ] [-Status ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### UpdateViaIdentity + +``` +Update-MgSolutionBackupRestoreBrowseSession -InputObject + -BodyParameter [-ResponseHeadersVariable ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Update the navigation property browseSessions in solutions + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -AdditionalProperties + +Additional Parameters + +```yaml +Type: System.Collections.Hashtable +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BackupSizeInBytes + +The size of the backup in bytes. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BodyParameter + +browseSessionBase +To construct, see NOTES section for BODYPARAMETER properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphBrowseSessionBase +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Update + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BrowseSessionBaseId + +The unique identifier of browseSessionBase + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateExpanded + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Update + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- cf +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -CreatedDateTime + +The date and time when the browse session was created. +The timestamp type represents date and time information using ISO 8601 format and is always in UTC. +For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Error + +publicError +To construct, see NOTES section for ERROR properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphPublicError +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ExpirationDateTime + +The date and time after which the browse session is deleted automatically. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Id + +The unique identifier for an entity. +Read-only. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestorePointDateTime + +The date and time of the restore point on which the browse session is created. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestorePointId + +. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Status + +browseSessionStatus + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WhatIf + +Runs the command in a mode that only reports what would happen without performing the actions. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- wi +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity + +{{ Fill in the Description }} + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphBrowseSessionBase + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphBrowseSessionBase + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +BODYPARAMETER : browseSessionBase + [(Any) ]: This indicates any property can be added to this object. + [Id ]: The unique identifier for an entity. +Read-only. + [BackupSizeInBytes ]: The size of the backup in bytes. + [CreatedDateTime ]: The date and time when the browse session was created. +The timestamp type represents date and time information using ISO 8601 format and is always in UTC. +For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + [Error ]: publicError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: Represents the error code. + [Details ]: Details of the error. + [Code ]: The error code. + [Message ]: The error message. + [Target ]: The target of the error. + [InnerError ]: publicInnerError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: The error code. + [Details ]: A collection of error details. + [Message ]: The error message. + [Target ]: The target of the error. + [Message ]: A non-localized message for the developer. + [Target ]: The target of the error. + [ExpirationDateTime ]: The date and time after which the browse session is deleted automatically. + [RestorePointDateTime ]: The date and time of the restore point on which the browse session is created. + [RestorePointId ]: + [Status ]: browseSessionStatus + +ERROR : publicError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: Represents the error code. + [Details ]: Details of the error. + [Code ]: The error code. + [Message ]: The error message. + [Target ]: The target of the error. + [InnerError ]: publicInnerError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: The error code. + [Details ]: A collection of error details. + [Message ]: The error message. + [Target ]: The target of the error. + [Message ]: A non-localized message for the developer. + [Target ]: The target of the error. + +INPUTOBJECT : Identity Parameter + [BrowseSessionBaseId ]: The unique identifier of browseSessionBase + [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule + [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit + [DriveProtectionUnitsBulkAdditionJobId ]: The unique identifier of driveProtectionUnitsBulkAdditionJob + [DriveRestoreArtifactId ]: The unique identifier of driveRestoreArtifact + [DriveRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of driveRestoreArtifactsBulkAdditionRequest + [ExchangeProtectionPolicyId ]: The unique identifier of exchangeProtectionPolicy + [ExchangeRestoreSessionId ]: The unique identifier of exchangeRestoreSession + [GranularDriveRestoreArtifactId ]: The unique identifier of granularDriveRestoreArtifact + [GranularMailboxRestoreArtifactId ]: The unique identifier of granularMailboxRestoreArtifact + [GranularSiteRestoreArtifactId ]: The unique identifier of granularSiteRestoreArtifact + [MailboxProtectionRuleId ]: The unique identifier of mailboxProtectionRule + [MailboxProtectionUnitId ]: The unique identifier of mailboxProtectionUnit + [MailboxProtectionUnitsBulkAdditionJobId ]: The unique identifier of mailboxProtectionUnitsBulkAdditionJob + [MailboxRestoreArtifactId ]: The unique identifier of mailboxRestoreArtifact + [MailboxRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of mailboxRestoreArtifactsBulkAdditionRequest + [NextFetchToken ]: Usage: nextFetchToken='{nextFetchToken}' + [OneDriveForBusinessBrowseSessionId ]: The unique identifier of oneDriveForBusinessBrowseSession + [OneDriveForBusinessProtectionPolicyId ]: The unique identifier of oneDriveForBusinessProtectionPolicy + [OneDriveForBusinessRestoreSessionId ]: The unique identifier of oneDriveForBusinessRestoreSession + [ProtectionPolicyBaseId ]: The unique identifier of protectionPolicyBase + [ProtectionUnitBaseId ]: The unique identifier of protectionUnitBase + [RestorePointId ]: The unique identifier of restorePoint + [RestoreSessionBaseId ]: The unique identifier of restoreSessionBase + [ServiceAppId ]: The unique identifier of serviceApp + [SharePointBrowseSessionId ]: The unique identifier of sharePointBrowseSession + [SharePointProtectionPolicyId ]: The unique identifier of sharePointProtectionPolicy + [SharePointRestoreSessionId ]: The unique identifier of sharePointRestoreSession + [SiteProtectionRuleId ]: The unique identifier of siteProtectionRule + [SiteProtectionUnitId ]: The unique identifier of siteProtectionUnit + [SiteProtectionUnitsBulkAdditionJobId ]: The unique identifier of siteProtectionUnitsBulkAdditionJob + [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact + [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestorebrowsesession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveInclusionRule.md index 150ce58acbe9b..7f973d009d47c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveInclusionRule.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoredriveinclusionrule Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreDriveInclusionRule --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestoreDriveInclusionRule Update the navigation property driveInclusionRules in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreDriveInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreDriveInclusionRule?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -30,7 +27,7 @@ Update-MgSolutionBackupRestoreDriveInclusionRule -DriveProtectionRuleId [-LastModifiedBy ] [-LastModifiedDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +37,7 @@ Update-MgSolutionBackupRestoreDriveInclusionRule -DriveProtectionRuleId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +50,7 @@ Update-MgSolutionBackupRestoreDriveInclusionRule -InputObject ] [-LastModifiedDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +60,7 @@ Update-MgSolutionBackupRestoreDriveInclusionRule -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -75,6 +72,16 @@ This cmdlet has the following aliases, Update the navigation property driveInclusionRules in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -682,7 +689,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: driveProtectionRule +BODYPARAMETER : driveProtectionRule [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -719,7 +726,7 @@ Read-only. [DriveExpression ]: Contains a drive expression. For examples, see driveExpression examples. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -730,7 +737,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -746,7 +753,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -781,7 +788,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -795,27 +802,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgSolutionBackupRestoreDriveInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoredriveinclusionrule) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoredriveinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnit.md index d9e1ae394c4c3..b137a6a3da2a2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoredriveprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreDriveProtectionUnit --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestoreDriveProtectionUnit Update the navigation property driveProtectionUnits in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreDriveProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreDriveProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,7 @@ Update-MgSolutionBackupRestoreDriveProtectionUnit -DriveProtectionUnitId ] [-PolicyId ] [-ProtectionSources ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +38,7 @@ Update-MgSolutionBackupRestoreDriveProtectionUnit -DriveProtectionUnitId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +52,7 @@ Update-MgSolutionBackupRestoreDriveProtectionUnit -InputObject ] [-PolicyId ] [-ProtectionSources ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -65,7 +62,7 @@ Update-MgSolutionBackupRestoreDriveProtectionUnit -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,6 +74,16 @@ This cmdlet has the following aliases, Update the navigation property driveProtectionUnits in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -743,7 +750,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: driveProtectionUnit +BODYPARAMETER : driveProtectionUnit [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -787,7 +794,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [DirectoryObjectId ]: ID of the directory object. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -798,7 +805,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -814,7 +821,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -849,7 +856,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -863,27 +870,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgSolutionBackupRestoreDriveProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoredriveprotectionunit) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoredriveprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md index a70e1a98ad6ab..9734b352686e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob Update the navigation property driveProtectionUnitsBulkAdditionJobs in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,7 @@ Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob [-LastModifiedBy ] [-LastModifiedDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -43,7 +40,6 @@ Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -57,7 +53,7 @@ Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob [-LastModifiedBy ] [-LastModifiedDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -69,7 +65,6 @@ Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -81,6 +76,16 @@ This cmdlet has the following aliases, Update the navigation property driveProtectionUnitsBulkAdditionJobs in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -714,7 +719,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: driveProtectionUnitsBulkAdditionJob +BODYPARAMETER : driveProtectionUnitsBulkAdditionJob [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -751,7 +756,7 @@ Read-only. [DirectoryObjectIds ]: The list of OneDrive directoryObjectIds to add to the OneDrive protection policy. [Drives ]: The list of email addresses to add to the OneDrive protection policy. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -762,7 +767,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -778,7 +783,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -813,7 +818,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -827,27 +832,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md index 02c6019a7d51e..50fb009321ac4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangeprotectionpolicy Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreExchangeProtectionPolicy --- @@ -16,9 +16,6 @@ title: Update-MgSolutionBackupRestoreExchangeProtectionPolicy Update an Exchange protection policy. This method adds a mailboxprotectionunit to or removes it from the protection policy. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreExchangeProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreExchangeProtectionPolicy?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -36,7 +33,7 @@ Update-MgSolutionBackupRestoreExchangeProtectionPolicy -ExchangeProtectionPolicy [-RetentionSettings ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -46,7 +43,7 @@ Update-MgSolutionBackupRestoreExchangeProtectionPolicy -ExchangeProtectionPolicy -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -64,7 +61,7 @@ Update-MgSolutionBackupRestoreExchangeProtectionPolicy -InputObject ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -74,7 +71,7 @@ Update-MgSolutionBackupRestoreExchangeProtectionPolicy -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -87,6 +84,16 @@ This cmdlet has the following aliases, Update an Exchange protection policy. This method adds a mailboxprotectionunit to or removes it from the protection policy. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -417,7 +424,7 @@ HelpMessage: '' ### -IsEnabled - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -555,7 +562,7 @@ HelpMessage: '' ### -MailboxProtectionUnitsBulkAdditionJobs - +. To construct, see NOTES section for MAILBOXPROTECTIONUNITSBULKADDITIONJOBS properties and create a hash table. ```yaml @@ -805,7 +812,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: exchangeProtectionPolicy +BODYPARAMETER : exchangeProtectionPolicy [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -892,7 +899,7 @@ Read-only. [DirectoryObjectIds ]: The list of Exchange directoryObjectIds to add to the Exchange protection policy. [Mailboxes ]: The list of Exchange email addresses to add to the Exchange protection policy. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -903,7 +910,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -938,7 +945,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1064,7 +1071,7 @@ Read-only. [DirectoryObjectIds ]: The list of Exchange directoryObjectIds to add to the Exchange protection policy. [Mailboxes ]: The list of Exchange email addresses to add to the Exchange protection policy. -PROTECTIONPOLICYARTIFACTCOUNT ``: protectionPolicyArtifactCount +PROTECTIONPOLICYARTIFACTCOUNT : protectionPolicyArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: [Failed ]: @@ -1078,28 +1085,5 @@ RETENTIONSETTINGS : Contains the retention se ## RELATED LINKS -- [Update-MgSolutionBackupRestoreExchangeProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangeprotectionpolicy) -- [Graph API Reference](https://learn.microsoft.com/graph/api/exchangeprotectionpolicy-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangeprotectionpolicy) +- [](https://learn.microsoft.com/graph/api/exchangeprotectionpolicy-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md index 2231b06c507b4..f7a46a7479348 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresession Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreExchangeRestoreSession --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestoreExchangeRestoreSession Update the properties of an exchangeRestoreSession. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreExchangeRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreExchangeRestoreSession?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -35,7 +32,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSession -ExchangeRestoreSessionId < [-RestoreSessionArtifactCount ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -45,7 +42,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSession -ExchangeRestoreSessionId < -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -63,7 +60,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSession -InputObject ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -73,7 +70,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSession -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -85,6 +82,16 @@ This cmdlet has the following aliases, Update the properties of an exchangeRestoreSession. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -324,7 +331,7 @@ HelpMessage: '' ### -GranularMailboxRestoreArtifacts - +. To construct, see NOTES section for GRANULARMAILBOXRESTOREARTIFACTS properties and create a hash table. ```yaml @@ -803,7 +810,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: exchangeRestoreSession +BODYPARAMETER : exchangeRestoreSession [(Any) ]: This indicates any property can be added to this object. [CompletedDateTime ]: The time of completion of the restore session. [CreatedBy ]: identitySet @@ -917,7 +924,7 @@ Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding Exchange restore session in a bulk operation. [Mailboxes ]: The list of email addresses that are added to the corresponding Exchange restore session in a bulk operation. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -928,7 +935,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -1007,7 +1014,7 @@ Read-only. Don't use. [SearchResponseId ]: . -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -1042,7 +1049,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1159,7 +1166,7 @@ Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding Exchange restore session in a bulk operation. [Mailboxes ]: The list of email addresses that are added to the corresponding Exchange restore session in a bulk operation. -RESTORESESSIONARTIFACTCOUNT ``: restoreSessionArtifactCount +RESTORESESSIONARTIFACTCOUNT : restoreSessionArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: The number of artifacts whose restoration completed. [Failed ]: The number of artifacts whose restoration failed. @@ -1169,28 +1176,5 @@ RESTORESESSIONARTIFACTCOUNT ``: rest ## RELATED LINKS -- [Update-MgSolutionBackupRestoreExchangeRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresession) -- [Graph API Reference](https://learn.microsoft.com/graph/api/exchangerestoresession-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresession) +- [](https://learn.microsoft.com/graph/api/exchangerestoresession-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index 07c5316c253d5..3bb8cf4478f8d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestor Update the navigation property granularMailboxRestoreArtifacts in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifa [-RestoredItemCount ] [-SearchResponseId ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -42,7 +39,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifa -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -56,7 +53,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifa [-RestoredItemCount ] [-SearchResponseId ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -67,7 +64,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifa -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -79,6 +76,16 @@ This cmdlet has the following aliases, Update the navigation property granularMailboxRestoreArtifacts in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -631,7 +638,7 @@ HelpMessage: '' ### -SearchResponseId - +. ```yaml Type: System.String @@ -766,7 +773,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: granularMailboxRestoreArtifact +BODYPARAMETER : granularMailboxRestoreArtifact [(Any) ]: This indicates any property can be added to this object. [RestoredFolderId ]: The new restored folder identifier for the user. [RestoredItemCount ]: The number of items that are being restored in the folder. @@ -830,7 +837,7 @@ Read-only. Don't use. [SearchResponseId ]: . -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -846,7 +853,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -881,7 +888,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -RESTOREPOINT ``: restorePoint +RESTOREPOINT : restorePoint [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -934,27 +941,4 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS -- [Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md index 21c49c5227a40..0f3ba4554f53d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifac Update the navigation property mailboxRestoreArtifacts in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact [-RestoredItemCount ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -42,7 +39,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +52,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact [-RestoredFolderId ] [-RestoredItemCount ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -66,7 +63,6 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -78,6 +74,16 @@ This cmdlet has the following aliases, Update the navigation property mailboxRestoreArtifacts in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -710,7 +716,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: mailboxRestoreArtifact +BODYPARAMETER : mailboxRestoreArtifact [(Any) ]: This indicates any property can be added to this object. [CompletionDateTime ]: The time when restoration of restore artifact is completed. [DestinationType ]: destinationType @@ -771,7 +777,7 @@ Read-only. [RestoredFolderId ]: The new restored folder identifier for the user. [RestoredItemCount ]: The number of items that are being restored in the folder. -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -787,7 +793,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -822,7 +828,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -RESTOREPOINT ``: restorePoint +RESTOREPOINT : restorePoint [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -875,27 +881,4 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS -- [Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md index c044845b2ccfd..93a25a50c687f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifac Update the navigation property mailboxRestoreArtifactsBulkAdditionRequests in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -33,7 +30,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAd [-ProtectionUnitIds ] [-RestorePointPreference ] [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -45,7 +42,6 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAd [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -61,7 +57,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAd [-ProtectionUnitIds ] [-RestorePointPreference ] [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -73,7 +69,6 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAd [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -85,6 +80,16 @@ This cmdlet has the following aliases, Update the navigation property mailboxRestoreArtifactsBulkAdditionRequests in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -883,7 +888,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: mailboxRestoreArtifactsBulkAdditionRequest +BODYPARAMETER : mailboxRestoreArtifactsBulkAdditionRequest [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -930,7 +935,7 @@ Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding Exchange restore session in a bulk operation. [Mailboxes ]: The list of email addresses that are added to the corresponding Exchange restore session in a bulk operation. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -941,7 +946,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -957,7 +962,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -992,7 +997,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1003,7 +1008,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONTIMEPERIOD ``: timePeriod +PROTECTIONTIMEPERIOD : timePeriod [(Any) ]: This indicates any property can be added to this object. [EndDateTime ]: The date time of the end of the time period. [StartDateTime ]: The date time of the start of the time period. @@ -1011,27 +1016,4 @@ PROTECTIONTIMEPERIOD ``: timePeriod ## RELATED LINKS -- [Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxInclusionRule.md index 1f60b142e0c9e..90b4af9867473 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxInclusionRule.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoremailboxinclusionrule Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreMailboxInclusionRule --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestoreMailboxInclusionRule Update the navigation property mailboxInclusionRules in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreMailboxInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreMailboxInclusionRule?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgSolutionBackupRestoreMailboxInclusionRule -MailboxProtectionRuleId ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +37,7 @@ Update-MgSolutionBackupRestoreMailboxInclusionRule -MailboxProtectionRuleId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +51,6 @@ Update-MgSolutionBackupRestoreMailboxInclusionRule -InputObject ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +60,7 @@ Update-MgSolutionBackupRestoreMailboxInclusionRule -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,6 +72,16 @@ This cmdlet has the following aliases, Update the navigation property mailboxInclusionRules in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -684,7 +689,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: mailboxProtectionRule +BODYPARAMETER : mailboxProtectionRule [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -721,7 +726,7 @@ Read-only. [MailboxExpression ]: Contains a mailbox expression. For examples, see mailboxExpression examples. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -732,7 +737,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -748,7 +753,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -783,7 +788,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -797,27 +802,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgSolutionBackupRestoreMailboxInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoremailboxinclusionrule) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoremailboxinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnit.md index e09244ee1ecdf..c3a76ea51f80d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoremailboxprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreMailboxProtectionUnit --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestoreMailboxProtectionUnit Update the navigation property mailboxProtectionUnits in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreMailboxProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreMailboxProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,7 @@ Update-MgSolutionBackupRestoreMailboxProtectionUnit -MailboxProtectionUnitId ] [-PolicyId ] [-ProtectionSources ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +38,7 @@ Update-MgSolutionBackupRestoreMailboxProtectionUnit -MailboxProtectionUnitId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +52,7 @@ Update-MgSolutionBackupRestoreMailboxProtectionUnit -InputObject ] [-PolicyId ] [-ProtectionSources ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -65,7 +62,7 @@ Update-MgSolutionBackupRestoreMailboxProtectionUnit -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,6 +74,16 @@ This cmdlet has the following aliases, Update the navigation property mailboxProtectionUnits in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -743,7 +750,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: mailboxProtectionUnit +BODYPARAMETER : mailboxProtectionUnit [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -787,7 +794,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [DirectoryObjectId ]: The ID of the directory object. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -798,7 +805,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -814,7 +821,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -849,7 +856,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -863,27 +870,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgSolutionBackupRestoreMailboxProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoremailboxprotectionunit) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoremailboxprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md index 34cb8aefa23f0..be50d677e7901 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob Update the navigation property mailboxProtectionUnitsBulkAdditionJobs in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,7 @@ Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob [-LastModifiedDateTime ] [-Mailboxes ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -43,7 +40,6 @@ Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -57,7 +53,7 @@ Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob [-LastModifiedDateTime ] [-Mailboxes ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -69,7 +65,6 @@ Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -81,6 +76,16 @@ This cmdlet has the following aliases, Update the navigation property mailboxProtectionUnitsBulkAdditionJobs in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -714,7 +719,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: mailboxProtectionUnitsBulkAdditionJob +BODYPARAMETER : mailboxProtectionUnitsBulkAdditionJob [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -751,7 +756,7 @@ Read-only. [DirectoryObjectIds ]: The list of Exchange directoryObjectIds to add to the Exchange protection policy. [Mailboxes ]: The list of Exchange email addresses to add to the Exchange protection policy. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -762,7 +767,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -778,7 +783,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -813,7 +818,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -827,27 +832,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md new file mode 100644 index 0000000000000..c53b3279e5d74 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -0,0 +1,775 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessbrowsesession +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession +--- + +# Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession + +## SYNOPSIS + +Update the navigation property oneDriveForBusinessBrowseSessions in solutions + +## SYNTAX + +### UpdateExpanded (Default) + +``` +Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession + -OneDriveForBusinessBrowseSessionId [-ResponseHeadersVariable ] + [-AdditionalProperties ] [-BackupSizeInBytes ] [-CreatedDateTime ] + [-DirectoryObjectId ] [-Error ] + [-ExpirationDateTime ] [-Id ] [-RestorePointDateTime ] + [-RestorePointId ] [-Status ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### Update + +``` +Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession + -OneDriveForBusinessBrowseSessionId + -BodyParameter + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### UpdateViaIdentityExpanded + +``` +Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession -InputObject + [-ResponseHeadersVariable ] [-AdditionalProperties ] + [-BackupSizeInBytes ] [-CreatedDateTime ] [-DirectoryObjectId ] + [-Error ] [-ExpirationDateTime ] [-Id ] + [-RestorePointDateTime ] [-RestorePointId ] [-Status ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### UpdateViaIdentity + +``` +Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession -InputObject + -BodyParameter + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Update the navigation property oneDriveForBusinessBrowseSessions in solutions + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -AdditionalProperties + +Additional Parameters + +```yaml +Type: System.Collections.Hashtable +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BackupSizeInBytes + +The size of the backup in bytes. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BodyParameter + +oneDriveForBusinessBrowseSession +To construct, see NOTES section for BODYPARAMETER properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphOneDriveForBusinessBrowseSession +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Update + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- cf +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -CreatedDateTime + +The date and time when the browse session was created. +The timestamp type represents date and time information using ISO 8601 format and is always in UTC. +For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -DirectoryObjectId + +Id of the backed-up OneDrive. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Error + +publicError +To construct, see NOTES section for ERROR properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphPublicError +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ExpirationDateTime + +The date and time after which the browse session is deleted automatically. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Id + +The unique identifier for an entity. +Read-only. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -OneDriveForBusinessBrowseSessionId + +The unique identifier of oneDriveForBusinessBrowseSession + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateExpanded + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Update + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestorePointDateTime + +The date and time of the restore point on which the browse session is created. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestorePointId + +. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Status + +browseSessionStatus + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WhatIf + +Runs the command in a mode that only reports what would happen without performing the actions. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- wi +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity + +{{ Fill in the Description }} + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphOneDriveForBusinessBrowseSession + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphOneDriveForBusinessBrowseSession + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +BODYPARAMETER : oneDriveForBusinessBrowseSession + [(Any) ]: This indicates any property can be added to this object. + [BackupSizeInBytes ]: The size of the backup in bytes. + [CreatedDateTime ]: The date and time when the browse session was created. +The timestamp type represents date and time information using ISO 8601 format and is always in UTC. +For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + [Error ]: publicError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: Represents the error code. + [Details ]: Details of the error. + [Code ]: The error code. + [Message ]: The error message. + [Target ]: The target of the error. + [InnerError ]: publicInnerError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: The error code. + [Details ]: A collection of error details. + [Message ]: The error message. + [Target ]: The target of the error. + [Message ]: A non-localized message for the developer. + [Target ]: The target of the error. + [ExpirationDateTime ]: The date and time after which the browse session is deleted automatically. + [RestorePointDateTime ]: The date and time of the restore point on which the browse session is created. + [RestorePointId ]: + [Status ]: browseSessionStatus + [Id ]: The unique identifier for an entity. +Read-only. + [DirectoryObjectId ]: Id of the backed-up OneDrive. + +ERROR : publicError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: Represents the error code. + [Details ]: Details of the error. + [Code ]: The error code. + [Message ]: The error message. + [Target ]: The target of the error. + [InnerError ]: publicInnerError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: The error code. + [Details ]: A collection of error details. + [Message ]: The error message. + [Target ]: The target of the error. + [Message ]: A non-localized message for the developer. + [Target ]: The target of the error. + +INPUTOBJECT : Identity Parameter + [BrowseSessionBaseId ]: The unique identifier of browseSessionBase + [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule + [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit + [DriveProtectionUnitsBulkAdditionJobId ]: The unique identifier of driveProtectionUnitsBulkAdditionJob + [DriveRestoreArtifactId ]: The unique identifier of driveRestoreArtifact + [DriveRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of driveRestoreArtifactsBulkAdditionRequest + [ExchangeProtectionPolicyId ]: The unique identifier of exchangeProtectionPolicy + [ExchangeRestoreSessionId ]: The unique identifier of exchangeRestoreSession + [GranularDriveRestoreArtifactId ]: The unique identifier of granularDriveRestoreArtifact + [GranularMailboxRestoreArtifactId ]: The unique identifier of granularMailboxRestoreArtifact + [GranularSiteRestoreArtifactId ]: The unique identifier of granularSiteRestoreArtifact + [MailboxProtectionRuleId ]: The unique identifier of mailboxProtectionRule + [MailboxProtectionUnitId ]: The unique identifier of mailboxProtectionUnit + [MailboxProtectionUnitsBulkAdditionJobId ]: The unique identifier of mailboxProtectionUnitsBulkAdditionJob + [MailboxRestoreArtifactId ]: The unique identifier of mailboxRestoreArtifact + [MailboxRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of mailboxRestoreArtifactsBulkAdditionRequest + [NextFetchToken ]: Usage: nextFetchToken='{nextFetchToken}' + [OneDriveForBusinessBrowseSessionId ]: The unique identifier of oneDriveForBusinessBrowseSession + [OneDriveForBusinessProtectionPolicyId ]: The unique identifier of oneDriveForBusinessProtectionPolicy + [OneDriveForBusinessRestoreSessionId ]: The unique identifier of oneDriveForBusinessRestoreSession + [ProtectionPolicyBaseId ]: The unique identifier of protectionPolicyBase + [ProtectionUnitBaseId ]: The unique identifier of protectionUnitBase + [RestorePointId ]: The unique identifier of restorePoint + [RestoreSessionBaseId ]: The unique identifier of restoreSessionBase + [ServiceAppId ]: The unique identifier of serviceApp + [SharePointBrowseSessionId ]: The unique identifier of sharePointBrowseSession + [SharePointProtectionPolicyId ]: The unique identifier of sharePointProtectionPolicy + [SharePointRestoreSessionId ]: The unique identifier of sharePointRestoreSession + [SiteProtectionRuleId ]: The unique identifier of siteProtectionRule + [SiteProtectionUnitId ]: The unique identifier of siteProtectionUnit + [SiteProtectionUnitsBulkAdditionJobId ]: The unique identifier of siteProtectionUnitsBulkAdditionJob + [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact + [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessbrowsesession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md index 17244f036dc55..1d0b45d9c88d8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy --- @@ -16,9 +16,6 @@ title: Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy Update the protection policy for the OneDrive service in Microsoft 365. This method adds a driveProtectionUnit to or removes it from a oneDriveForBusinessProtectionPolicy object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicy?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -37,7 +34,7 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy [-RetentionSettings ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -49,7 +46,6 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -68,7 +64,7 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy [-RetentionSettings ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -80,7 +76,6 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -93,6 +88,16 @@ This cmdlet has the following aliases, Update the protection policy for the OneDrive service in Microsoft 365. This method adds a driveProtectionUnit to or removes it from a oneDriveForBusinessProtectionPolicy object. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -333,7 +338,7 @@ HelpMessage: '' ### -DriveProtectionUnitsBulkAdditionJobs - +. To construct, see NOTES section for DRIVEPROTECTIONUNITSBULKADDITIONJOBS properties and create a hash table. ```yaml @@ -480,7 +485,7 @@ HelpMessage: '' ### -IsEnabled - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -811,7 +816,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: oneDriveForBusinessProtectionPolicy +BODYPARAMETER : oneDriveForBusinessProtectionPolicy [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -898,7 +903,7 @@ Read-only. [DirectoryObjectIds ]: The list of OneDrive directoryObjectIds to add to the OneDrive protection policy. [Drives ]: The list of email addresses to add to the OneDrive protection policy. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1024,7 +1029,7 @@ Read-only. [DirectoryObjectIds ]: The list of OneDrive directoryObjectIds to add to the OneDrive protection policy. [Drives ]: The list of email addresses to add to the OneDrive protection policy. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -1059,7 +1064,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1070,7 +1075,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONPOLICYARTIFACTCOUNT ``: protectionPolicyArtifactCount +PROTECTIONPOLICYARTIFACTCOUNT : protectionPolicyArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: [Failed ]: @@ -1084,28 +1089,5 @@ RETENTIONSETTINGS : Contains the retention se ## RELATED LINKS -- [Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy) -- [Graph API Reference](https://learn.microsoft.com/graph/api/onedriveforbusinessprotectionpolicy-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy) +- [](https://learn.microsoft.com/graph/api/onedriveforbusinessprotectionpolicy-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md index 752dd5898e6d8..a711eab35dfc9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresession Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession Update the properties of a oneDriveForBusinessRestoreSession object. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSession?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -36,7 +33,7 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession [-RestoreSessionArtifactCount ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -48,7 +45,6 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -67,7 +63,7 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession [-RestoreSessionArtifactCount ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -79,7 +75,6 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -91,6 +86,16 @@ This cmdlet has the following aliases, Update the properties of a oneDriveForBusinessRestoreSession object. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -359,7 +364,7 @@ HelpMessage: '' ### -GranularDriveRestoreArtifacts - +A collection of browse session ID and item key details that can be used to restore OneDrive for work or school files and folders. To construct, see NOTES section for GRANULARDRIVERESTOREARTIFACTS properties and create a hash table. ```yaml @@ -809,7 +814,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: oneDriveForBusinessRestoreSession +BODYPARAMETER : oneDriveForBusinessRestoreSession [(Any) ]: This indicates any property can be added to this object. [CompletedDateTime ]: The time of completion of the restore session. [CreatedBy ]: identitySet @@ -907,21 +912,22 @@ Future value; don't use. Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding OneDrive for work or school restore session in a bulk operation. [Drives ]: The list of email addresses that are added to the corresponding OneDrive for work or school restore session in a bulk operation. - [GranularDriveRestoreArtifacts ]: - [BrowseSessionId ]: - [CompletionDateTime ]: - [RestorePointDateTime ]: - [RestoredItemKey ]: - [RestoredItemPath ]: - [RestoredItemWebUrl ]: - [StartDateTime ]: + [GranularDriveRestoreArtifacts ]: A collection of browse session ID and item key details that can be used to restore OneDrive for work or school files and folders. + [BrowseSessionId ]: The unique identifier of the browseSession + [CompletionDateTime ]: Date time when the artifact's restoration completes. + [RestorePointDateTime ]: The restore point date time to which the artifact is restored. + [RestoredItemKey ]: The unique identifier for the restored artifact. + [RestoredItemPath ]: The path of the restored artifact. +It's the path of the folder where all the artifacts are restored within a granular restore session. + [RestoredItemWebUrl ]: The web url of the restored artifact. + [StartDateTime ]: The start time of the restoration. [Status ]: artifactRestoreStatus - [WebUrl ]: + [WebUrl ]: The original web url of the artifact being restored. [Id ]: The unique identifier for an entity. Read-only. - [DirectoryObjectId ]: + [DirectoryObjectId ]: Id of the drive in which artifact is present. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1037,7 +1043,7 @@ Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding OneDrive for work or school restore session in a bulk operation. [Drives ]: The list of email addresses that are added to the corresponding OneDrive for work or school restore session in a bulk operation. -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -1053,21 +1059,22 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -GRANULARDRIVERESTOREARTIFACTS : . - [BrowseSessionId ]: - [CompletionDateTime ]: - [RestorePointDateTime ]: - [RestoredItemKey ]: - [RestoredItemPath ]: - [RestoredItemWebUrl ]: - [StartDateTime ]: +GRANULARDRIVERESTOREARTIFACTS : A collection of browse session ID and item key details that can be used to restore OneDrive for work or school files and folders. + [BrowseSessionId ]: The unique identifier of the browseSession + [CompletionDateTime ]: Date time when the artifact's restoration completes. + [RestorePointDateTime ]: The restore point date time to which the artifact is restored. + [RestoredItemKey ]: The unique identifier for the restored artifact. + [RestoredItemPath ]: The path of the restored artifact. +It's the path of the folder where all the artifacts are restored within a granular restore session. + [RestoredItemWebUrl ]: The web url of the restored artifact. + [StartDateTime ]: The start time of the restoration. [Status ]: artifactRestoreStatus - [WebUrl ]: + [WebUrl ]: The original web url of the artifact being restored. [Id ]: The unique identifier for an entity. Read-only. - [DirectoryObjectId ]: + [DirectoryObjectId ]: Id of the drive in which artifact is present. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -1102,7 +1109,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1113,7 +1120,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -RESTORESESSIONARTIFACTCOUNT ``: restoreSessionArtifactCount +RESTORESESSIONARTIFACTCOUNT : restoreSessionArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: The number of artifacts whose restoration completed. [Failed ]: The number of artifacts whose restoration failed. @@ -1123,28 +1130,5 @@ RESTORESESSIONARTIFACTCOUNT ``: rest ## RELATED LINKS -- [Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresession) -- [Graph API Reference](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresession) +- [](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md index 7063c73d4147d..9b66ce6caee6c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveResto Update the navigation property driveRestoreArtifacts in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +38,7 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +51,7 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif [-RestoredSiteId ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -66,7 +62,6 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -78,6 +73,16 @@ This cmdlet has the following aliases, Update the navigation property driveRestoreArtifacts in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -683,7 +688,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: driveRestoreArtifact +BODYPARAMETER : driveRestoreArtifact [(Any) ]: This indicates any property can be added to this object. [CompletionDateTime ]: The time when restoration of restore artifact is completed. [DestinationType ]: destinationType @@ -743,7 +748,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [RestoredSiteId ]: The new site identifier if destinationType is new, and the input site ID if the destinationType is inPlace. -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -759,7 +764,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -794,7 +799,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -RESTOREPOINT ``: restorePoint +RESTOREPOINT : restorePoint [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -847,27 +852,4 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS -- [Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md index 30245dbdd0ab5..64e758e5da491 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveResto Update the navigation property driveRestoreArtifactsBulkAdditionRequests in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -33,7 +30,7 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif [-ProtectionUnitIds ] [-RestorePointPreference ] [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -45,7 +42,6 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -61,7 +57,7 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif [-RestorePointPreference ] [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -73,7 +69,6 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -85,6 +80,16 @@ This cmdlet has the following aliases, Update the navigation property driveRestoreArtifactsBulkAdditionRequests in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -883,7 +888,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: driveRestoreArtifactsBulkAdditionRequest +BODYPARAMETER : driveRestoreArtifactsBulkAdditionRequest [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -930,7 +935,7 @@ Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding OneDrive for work or school restore session in a bulk operation. [Drives ]: The list of email addresses that are added to the corresponding OneDrive for work or school restore session in a bulk operation. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -941,7 +946,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -957,7 +962,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -992,7 +997,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1003,7 +1008,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONTIMEPERIOD ``: timePeriod +PROTECTIONTIMEPERIOD : timePeriod [(Any) ]: This indicates any property can be added to this object. [EndDateTime ]: The date time of the end of the time period. [StartDateTime ]: The date time of the start of the time period. @@ -1011,27 +1016,4 @@ PROTECTIONTIMEPERIOD ``: timePeriod ## RELATED LINKS -- [Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md new file mode 100644 index 0000000000000..98a6ca4fca4da --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -0,0 +1,826 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifact +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact +--- + +# Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact + +## SYNOPSIS + +Update the navigation property granularDriveRestoreArtifacts in solutions + +## SYNTAX + +### UpdateExpanded (Default) + +``` +Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact + -GranularDriveRestoreArtifactId -OneDriveForBusinessRestoreSessionId + [-ResponseHeadersVariable ] [-AdditionalProperties ] [-BrowseSessionId ] + [-CompletionDateTime ] [-DirectoryObjectId ] [-Id ] + [-RestorePointDateTime ] [-RestoredItemKey ] [-RestoredItemPath ] + [-RestoredItemWebUrl ] [-StartDateTime ] [-Status ] [-WebUrl ] + [-Break] [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### Update + +``` +Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact + -GranularDriveRestoreArtifactId -OneDriveForBusinessRestoreSessionId + -BodyParameter [-ResponseHeadersVariable ] + [-Break] [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### UpdateViaIdentityExpanded + +``` +Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact + -InputObject [-ResponseHeadersVariable ] + [-AdditionalProperties ] [-BrowseSessionId ] [-CompletionDateTime ] + [-DirectoryObjectId ] [-Id ] [-RestorePointDateTime ] + [-RestoredItemKey ] [-RestoredItemPath ] [-RestoredItemWebUrl ] + [-StartDateTime ] [-Status ] [-WebUrl ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### UpdateViaIdentity + +``` +Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact + -InputObject -BodyParameter + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Update the navigation property granularDriveRestoreArtifacts in solutions + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -AdditionalProperties + +Additional Parameters + +```yaml +Type: System.Collections.Hashtable +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BodyParameter + +granularDriveRestoreArtifact +To construct, see NOTES section for BODYPARAMETER properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphGranularDriveRestoreArtifact +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Update + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BrowseSessionId + +The unique identifier of the browseSession + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -CompletionDateTime + +Date time when the artifact's restoration completes. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- cf +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -DirectoryObjectId + +Id of the drive in which artifact is present. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -GranularDriveRestoreArtifactId + +The unique identifier of granularDriveRestoreArtifact + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateExpanded + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Update + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Id + +The unique identifier for an entity. +Read-only. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -OneDriveForBusinessRestoreSessionId + +The unique identifier of oneDriveForBusinessRestoreSession + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateExpanded + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Update + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestoredItemKey + +The unique identifier for the restored artifact. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestoredItemPath + +The path of the restored artifact. +It's the path of the folder where all the artifacts are restored within a granular restore session. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestoredItemWebUrl + +The web url of the restored artifact. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestorePointDateTime + +The restore point date time to which the artifact is restored. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -StartDateTime + +The start time of the restoration. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Status + +artifactRestoreStatus + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WebUrl + +The original web url of the artifact being restored. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WhatIf + +Runs the command in a mode that only reports what would happen without performing the actions. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- wi +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity + +{{ Fill in the Description }} + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphGranularDriveRestoreArtifact + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphGranularDriveRestoreArtifact + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +BODYPARAMETER : granularDriveRestoreArtifact + [(Any) ]: This indicates any property can be added to this object. + [BrowseSessionId ]: The unique identifier of the browseSession + [CompletionDateTime ]: Date time when the artifact's restoration completes. + [RestorePointDateTime ]: The restore point date time to which the artifact is restored. + [RestoredItemKey ]: The unique identifier for the restored artifact. + [RestoredItemPath ]: The path of the restored artifact. +It's the path of the folder where all the artifacts are restored within a granular restore session. + [RestoredItemWebUrl ]: The web url of the restored artifact. + [StartDateTime ]: The start time of the restoration. + [Status ]: artifactRestoreStatus + [WebUrl ]: The original web url of the artifact being restored. + [Id ]: The unique identifier for an entity. +Read-only. + [DirectoryObjectId ]: Id of the drive in which artifact is present. + +INPUTOBJECT : Identity Parameter + [BrowseSessionBaseId ]: The unique identifier of browseSessionBase + [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule + [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit + [DriveProtectionUnitsBulkAdditionJobId ]: The unique identifier of driveProtectionUnitsBulkAdditionJob + [DriveRestoreArtifactId ]: The unique identifier of driveRestoreArtifact + [DriveRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of driveRestoreArtifactsBulkAdditionRequest + [ExchangeProtectionPolicyId ]: The unique identifier of exchangeProtectionPolicy + [ExchangeRestoreSessionId ]: The unique identifier of exchangeRestoreSession + [GranularDriveRestoreArtifactId ]: The unique identifier of granularDriveRestoreArtifact + [GranularMailboxRestoreArtifactId ]: The unique identifier of granularMailboxRestoreArtifact + [GranularSiteRestoreArtifactId ]: The unique identifier of granularSiteRestoreArtifact + [MailboxProtectionRuleId ]: The unique identifier of mailboxProtectionRule + [MailboxProtectionUnitId ]: The unique identifier of mailboxProtectionUnit + [MailboxProtectionUnitsBulkAdditionJobId ]: The unique identifier of mailboxProtectionUnitsBulkAdditionJob + [MailboxRestoreArtifactId ]: The unique identifier of mailboxRestoreArtifact + [MailboxRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of mailboxRestoreArtifactsBulkAdditionRequest + [NextFetchToken ]: Usage: nextFetchToken='{nextFetchToken}' + [OneDriveForBusinessBrowseSessionId ]: The unique identifier of oneDriveForBusinessBrowseSession + [OneDriveForBusinessProtectionPolicyId ]: The unique identifier of oneDriveForBusinessProtectionPolicy + [OneDriveForBusinessRestoreSessionId ]: The unique identifier of oneDriveForBusinessRestoreSession + [ProtectionPolicyBaseId ]: The unique identifier of protectionPolicyBase + [ProtectionUnitBaseId ]: The unique identifier of protectionUnitBase + [RestorePointId ]: The unique identifier of restorePoint + [RestoreSessionBaseId ]: The unique identifier of restoreSessionBase + [ServiceAppId ]: The unique identifier of serviceApp + [SharePointBrowseSessionId ]: The unique identifier of sharePointBrowseSession + [SharePointProtectionPolicyId ]: The unique identifier of sharePointProtectionPolicy + [SharePointRestoreSessionId ]: The unique identifier of sharePointRestoreSession + [SiteProtectionRuleId ]: The unique identifier of siteProtectionRule + [SiteProtectionUnitId ]: The unique identifier of siteProtectionUnit + [SiteProtectionUnitsBulkAdditionJobId ]: The unique identifier of siteProtectionUnitsBulkAdditionJob + [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact + [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestorePoint.md index fbe597bdf2364..b7823e302e880 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestorePoint.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestorepoint Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestorePoint --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestorePoint Update the navigation property restorePoints in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestorePoint](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestorePoint?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -28,7 +25,7 @@ Update-MgSolutionBackupRestorePoint -RestorePointId [-ResponseHeadersVa [-ProtectionDateTime ] [-ProtectionUnit ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -38,7 +35,7 @@ Update-MgSolutionBackupRestorePoint -RestorePointId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -50,7 +47,7 @@ Update-MgSolutionBackupRestorePoint -InputObject [-ProtectionUnit ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -60,7 +57,7 @@ Update-MgSolutionBackupRestorePoint -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -72,6 +69,16 @@ This cmdlet has the following aliases, Update the navigation property restorePoints in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -568,7 +575,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: restorePoint +BODYPARAMETER : restorePoint [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -618,7 +625,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Status ]: protectionUnitStatus [Tags ]: restorePointTags -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -653,7 +660,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -PROTECTIONUNIT ``: protectionUnitBase +PROTECTIONUNIT : protectionUnitBase [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -699,27 +706,4 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS -- [Update-MgSolutionBackupRestorePoint](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestorepoint) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestorepoint) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md index 81dc0bbec4d3f..4f1385d9530f8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreprotectionpolicy Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreProtectionPolicy --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestoreProtectionPolicy Update the navigation property protectionPolicies in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreProtectionPolicy?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -32,7 +29,7 @@ Update-MgSolutionBackupRestoreProtectionPolicy -ProtectionPolicyBaseId [-RetentionSettings ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -42,7 +39,7 @@ Update-MgSolutionBackupRestoreProtectionPolicy -ProtectionPolicyBaseId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -57,7 +54,7 @@ Update-MgSolutionBackupRestoreProtectionPolicy -InputObject ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -67,7 +64,7 @@ Update-MgSolutionBackupRestoreProtectionPolicy -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -79,6 +76,16 @@ This cmdlet has the following aliases, Update the navigation property protectionPolicies in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -382,7 +389,7 @@ HelpMessage: '' ### -IsEnabled - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -713,7 +720,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: protectionPolicyBase +BODYPARAMETER : protectionPolicyBase [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -743,7 +750,7 @@ For example, in the access reviews decisions API, this property might record the [Period ]: The period of time to retain the protected data for a single Microsoft 365 service. [Status ]: protectionPolicyStatus -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -754,7 +761,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -789,7 +796,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -800,7 +807,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONPOLICYARTIFACTCOUNT ``: protectionPolicyArtifactCount +PROTECTIONPOLICYARTIFACTCOUNT : protectionPolicyArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: [Failed ]: @@ -814,27 +821,4 @@ RETENTIONSETTINGS : Contains the retention se ## RELATED LINKS -- [Update-MgSolutionBackupRestoreProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreprotectionpolicy) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreprotectionpolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreServiceApp.md index ecba5bb807933..5a4a74ef026e1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreServiceApp.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreserviceapp Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreServiceApp --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestoreServiceApp Update the navigation property serviceApps in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreServiceApp](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreServiceApp?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -29,7 +26,7 @@ Update-MgSolutionBackupRestoreServiceApp -ServiceAppId [-ResponseHeader [-LastModifiedDateTime ] [-RegistrationDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -39,7 +36,7 @@ Update-MgSolutionBackupRestoreServiceApp -ServiceAppId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -52,7 +49,6 @@ Update-MgSolutionBackupRestoreServiceApp -InputObject [-RegistrationDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -62,7 +58,7 @@ Update-MgSolutionBackupRestoreServiceApp -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -74,6 +70,16 @@ This cmdlet has the following aliases, Update the navigation property serviceApps in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -625,14 +631,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -APPLICATION ``: identity +APPLICATION : identity [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: The display name of the identity.For drive items, the display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user don't show up as changed when using delta. [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. -BODYPARAMETER ``: serviceApp +BODYPARAMETER : serviceApp [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -652,7 +658,7 @@ For example, in the access reviews decisions API, this property might record the [RegistrationDateTime ]: Timestamp of the creation of the service app entity. [Status ]: serviceAppStatus -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -687,7 +693,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -701,27 +707,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgSolutionBackupRestoreServiceApp](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreserviceapp) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreserviceapp) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSession.md index 6743893ae32bc..1fe666c420024 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresession Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreSession --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestoreSession Update the navigation property restoreSessions in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreSession?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -32,7 +29,7 @@ Update-MgSolutionBackupRestoreSession -RestoreSessionBaseId [-RestoreSessionArtifactCount ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -42,7 +39,7 @@ Update-MgSolutionBackupRestoreSession -RestoreSessionBaseId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -57,7 +54,7 @@ Update-MgSolutionBackupRestoreSession -InputObject [-RestoreSessionArtifactCount ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -67,7 +64,7 @@ Update-MgSolutionBackupRestoreSession -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -79,6 +76,16 @@ This cmdlet has the following aliases, Update the navigation property restoreSessions in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -713,7 +720,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: restoreSessionBase +BODYPARAMETER : restoreSessionBase [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -755,7 +762,7 @@ For example, in the access reviews decisions API, this property might record the [Total ]: The number of artifacts present in the restore session. [Status ]: restoreSessionStatus -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -766,7 +773,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -782,7 +789,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -817,7 +824,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -828,7 +835,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -RESTORESESSIONARTIFACTCOUNT ``: restoreSessionArtifactCount +RESTORESESSIONARTIFACTCOUNT : restoreSessionArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: The number of artifacts whose restoration completed. [Failed ]: The number of artifacts whose restoration failed. @@ -838,27 +845,4 @@ RESTORESESSIONARTIFACTCOUNT ``: rest ## RELATED LINKS -- [Update-MgSolutionBackupRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md new file mode 100644 index 0000000000000..8d50e92398e96 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -0,0 +1,772 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointbrowsesession +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Update-MgSolutionBackupRestoreSharePointBrowseSession +--- + +# Update-MgSolutionBackupRestoreSharePointBrowseSession + +## SYNOPSIS + +Update the navigation property sharePointBrowseSessions in solutions + +## SYNTAX + +### UpdateExpanded (Default) + +``` +Update-MgSolutionBackupRestoreSharePointBrowseSession -SharePointBrowseSessionId + [-ResponseHeadersVariable ] [-AdditionalProperties ] + [-BackupSizeInBytes ] [-CreatedDateTime ] [-Error ] + [-ExpirationDateTime ] [-Id ] [-RestorePointDateTime ] + [-RestorePointId ] [-SiteId ] [-Status ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### Update + +``` +Update-MgSolutionBackupRestoreSharePointBrowseSession -SharePointBrowseSessionId + -BodyParameter [-ResponseHeadersVariable ] + [-Break] [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### UpdateViaIdentityExpanded + +``` +Update-MgSolutionBackupRestoreSharePointBrowseSession -InputObject + [-ResponseHeadersVariable ] [-AdditionalProperties ] + [-BackupSizeInBytes ] [-CreatedDateTime ] [-Error ] + [-ExpirationDateTime ] [-Id ] [-RestorePointDateTime ] + [-RestorePointId ] [-SiteId ] [-Status ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### UpdateViaIdentity + +``` +Update-MgSolutionBackupRestoreSharePointBrowseSession -InputObject + -BodyParameter [-ResponseHeadersVariable ] + [-Break] [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Update the navigation property sharePointBrowseSessions in solutions + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -AdditionalProperties + +Additional Parameters + +```yaml +Type: System.Collections.Hashtable +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BackupSizeInBytes + +The size of the backup in bytes. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BodyParameter + +sharePointBrowseSession +To construct, see NOTES section for BODYPARAMETER properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphSharePointBrowseSession +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Update + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- cf +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -CreatedDateTime + +The date and time when the browse session was created. +The timestamp type represents date and time information using ISO 8601 format and is always in UTC. +For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Error + +publicError +To construct, see NOTES section for ERROR properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphPublicError +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ExpirationDateTime + +The date and time after which the browse session is deleted automatically. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Id + +The unique identifier for an entity. +Read-only. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestorePointDateTime + +The date and time of the restore point on which the browse session is created. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestorePointId + +. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -SharePointBrowseSessionId + +The unique identifier of sharePointBrowseSession + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateExpanded + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Update + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -SiteId + +Id of the backed-up SharePoint site. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Status + +browseSessionStatus + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WhatIf + +Runs the command in a mode that only reports what would happen without performing the actions. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- wi +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity + +{{ Fill in the Description }} + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphSharePointBrowseSession + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphSharePointBrowseSession + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +BODYPARAMETER : sharePointBrowseSession + [(Any) ]: This indicates any property can be added to this object. + [BackupSizeInBytes ]: The size of the backup in bytes. + [CreatedDateTime ]: The date and time when the browse session was created. +The timestamp type represents date and time information using ISO 8601 format and is always in UTC. +For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + [Error ]: publicError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: Represents the error code. + [Details ]: Details of the error. + [Code ]: The error code. + [Message ]: The error message. + [Target ]: The target of the error. + [InnerError ]: publicInnerError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: The error code. + [Details ]: A collection of error details. + [Message ]: The error message. + [Target ]: The target of the error. + [Message ]: A non-localized message for the developer. + [Target ]: The target of the error. + [ExpirationDateTime ]: The date and time after which the browse session is deleted automatically. + [RestorePointDateTime ]: The date and time of the restore point on which the browse session is created. + [RestorePointId ]: + [Status ]: browseSessionStatus + [Id ]: The unique identifier for an entity. +Read-only. + [SiteId ]: Id of the backed-up SharePoint site. + +ERROR : publicError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: Represents the error code. + [Details ]: Details of the error. + [Code ]: The error code. + [Message ]: The error message. + [Target ]: The target of the error. + [InnerError ]: publicInnerError + [(Any) ]: This indicates any property can be added to this object. + [Code ]: The error code. + [Details ]: A collection of error details. + [Message ]: The error message. + [Target ]: The target of the error. + [Message ]: A non-localized message for the developer. + [Target ]: The target of the error. + +INPUTOBJECT : Identity Parameter + [BrowseSessionBaseId ]: The unique identifier of browseSessionBase + [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule + [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit + [DriveProtectionUnitsBulkAdditionJobId ]: The unique identifier of driveProtectionUnitsBulkAdditionJob + [DriveRestoreArtifactId ]: The unique identifier of driveRestoreArtifact + [DriveRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of driveRestoreArtifactsBulkAdditionRequest + [ExchangeProtectionPolicyId ]: The unique identifier of exchangeProtectionPolicy + [ExchangeRestoreSessionId ]: The unique identifier of exchangeRestoreSession + [GranularDriveRestoreArtifactId ]: The unique identifier of granularDriveRestoreArtifact + [GranularMailboxRestoreArtifactId ]: The unique identifier of granularMailboxRestoreArtifact + [GranularSiteRestoreArtifactId ]: The unique identifier of granularSiteRestoreArtifact + [MailboxProtectionRuleId ]: The unique identifier of mailboxProtectionRule + [MailboxProtectionUnitId ]: The unique identifier of mailboxProtectionUnit + [MailboxProtectionUnitsBulkAdditionJobId ]: The unique identifier of mailboxProtectionUnitsBulkAdditionJob + [MailboxRestoreArtifactId ]: The unique identifier of mailboxRestoreArtifact + [MailboxRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of mailboxRestoreArtifactsBulkAdditionRequest + [NextFetchToken ]: Usage: nextFetchToken='{nextFetchToken}' + [OneDriveForBusinessBrowseSessionId ]: The unique identifier of oneDriveForBusinessBrowseSession + [OneDriveForBusinessProtectionPolicyId ]: The unique identifier of oneDriveForBusinessProtectionPolicy + [OneDriveForBusinessRestoreSessionId ]: The unique identifier of oneDriveForBusinessRestoreSession + [ProtectionPolicyBaseId ]: The unique identifier of protectionPolicyBase + [ProtectionUnitBaseId ]: The unique identifier of protectionUnitBase + [RestorePointId ]: The unique identifier of restorePoint + [RestoreSessionBaseId ]: The unique identifier of restoreSessionBase + [ServiceAppId ]: The unique identifier of serviceApp + [SharePointBrowseSessionId ]: The unique identifier of sharePointBrowseSession + [SharePointProtectionPolicyId ]: The unique identifier of sharePointProtectionPolicy + [SharePointRestoreSessionId ]: The unique identifier of sharePointRestoreSession + [SiteProtectionRuleId ]: The unique identifier of siteProtectionRule + [SiteProtectionUnitId ]: The unique identifier of siteProtectionUnit + [SiteProtectionUnitsBulkAdditionJobId ]: The unique identifier of siteProtectionUnitsBulkAdditionJob + [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact + [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointbrowsesession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md index a957e3c8774c4..5480445241907 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointprotectionpolicy Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreSharePointProtectionPolicy --- @@ -16,9 +16,6 @@ title: Update-MgSolutionBackupRestoreSharePointProtectionPolicy Update a SharePoint protection policy. This method adds a siteprotectionunit to or removes it from the protection policy. -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreSharePointProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreSharePointProtectionPolicy?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -36,7 +33,7 @@ Update-MgSolutionBackupRestoreSharePointProtectionPolicy -SharePointProtectionPo [-SiteProtectionUnitsBulkAdditionJobs ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -46,7 +43,7 @@ Update-MgSolutionBackupRestoreSharePointProtectionPolicy -SharePointProtectionPo -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -64,7 +61,7 @@ Update-MgSolutionBackupRestoreSharePointProtectionPolicy -InputObject ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -74,7 +71,7 @@ Update-MgSolutionBackupRestoreSharePointProtectionPolicy -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -87,6 +84,16 @@ This cmdlet has the following aliases, Update a SharePoint protection policy. This method adds a siteprotectionunit to or removes it from the protection policy. +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -390,7 +397,7 @@ HelpMessage: '' ### -IsEnabled - +. ```yaml Type: System.Management.Automation.SwitchParameter @@ -696,7 +703,7 @@ HelpMessage: '' ### -SiteProtectionUnitsBulkAdditionJobs - +. To construct, see NOTES section for SITEPROTECTIONUNITSBULKADDITIONJOBS properties and create a hash table. ```yaml @@ -805,7 +812,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: sharePointProtectionPolicy +BODYPARAMETER : sharePointProtectionPolicy [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -892,7 +899,7 @@ Read-only. [SiteIds ]: The list of SharePoint site IDs to add to the SharePoint protection policy. [SiteWebUrls ]: The list of SharePoint site URLs to add to the SharePoint protection policy. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -903,7 +910,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -938,7 +945,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -949,7 +956,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONPOLICYARTIFACTCOUNT ``: protectionPolicyArtifactCount +PROTECTIONPOLICYARTIFACTCOUNT : protectionPolicyArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: [Failed ]: @@ -1078,28 +1085,5 @@ Read-only. ## RELATED LINKS -- [Update-MgSolutionBackupRestoreSharePointProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointprotectionpolicy) -- [Graph API Reference](https://learn.microsoft.com/graph/api/sharepointprotectionpolicy-update?view=graph-rest-1.0) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointprotectionpolicy) +- [](https://learn.microsoft.com/graph/api/sharepointprotectionpolicy-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSession.md index 5e91dfce3d89d..ba91bfb63393d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSession.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresession Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreSharePointRestoreSession --- @@ -13,10 +13,7 @@ title: Update-MgSolutionBackupRestoreSharePointRestoreSession ## SYNOPSIS -Update the navigation property sharePointRestoreSessions in solutions - -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreSharePointRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreSharePointRestoreSession?view=graph-powershell-beta) +Update the properties of a sharePointRestoreSession object. ## SYNTAX @@ -35,7 +32,7 @@ Update-MgSolutionBackupRestoreSharePointRestoreSession -SharePointRestoreSession [-SiteRestoreArtifactsBulkAdditionRequests ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -45,7 +42,7 @@ Update-MgSolutionBackupRestoreSharePointRestoreSession -SharePointRestoreSession -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -63,7 +60,7 @@ Update-MgSolutionBackupRestoreSharePointRestoreSession -InputObject ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -73,7 +70,7 @@ Update-MgSolutionBackupRestoreSharePointRestoreSession -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -83,7 +80,17 @@ This cmdlet has the following aliases, ## DESCRIPTION -Update the navigation property sharePointRestoreSessions in solutions +Update the properties of a sharePointRestoreSession object. + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} ## PARAMETERS @@ -297,7 +304,7 @@ HelpMessage: '' ### -GranularSiteRestoreArtifacts - +A collection of browse session ID and item key details that can be used to restore SharePoint files and folders. To construct, see NOTES section for GRANULARSITERESTOREARTIFACTS properties and create a hash table. ```yaml @@ -803,7 +810,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: sharePointRestoreSession +BODYPARAMETER : sharePointRestoreSession [(Any) ]: This indicates any property can be added to this object. [CompletedDateTime ]: The time of completion of the restore session. [CreatedBy ]: identitySet @@ -844,19 +851,20 @@ For example, in the access reviews decisions API, this property might record the [Status ]: restoreSessionStatus [Id ]: The unique identifier for an entity. Read-only. - [GranularSiteRestoreArtifacts ]: - [BrowseSessionId ]: - [CompletionDateTime ]: - [RestorePointDateTime ]: - [RestoredItemKey ]: - [RestoredItemPath ]: - [RestoredItemWebUrl ]: - [StartDateTime ]: + [GranularSiteRestoreArtifacts ]: A collection of browse session ID and item key details that can be used to restore SharePoint files and folders. + [BrowseSessionId ]: The unique identifier of the browseSession + [CompletionDateTime ]: Date time when the artifact's restoration completes. + [RestorePointDateTime ]: The restore point date time to which the artifact is restored. + [RestoredItemKey ]: The unique identifier for the restored artifact. + [RestoredItemPath ]: The path of the restored artifact. +It's the path of the folder where all the artifacts are restored within a granular restore session. + [RestoredItemWebUrl ]: The web url of the restored artifact. + [StartDateTime ]: The start time of the restoration. [Status ]: artifactRestoreStatus - [WebUrl ]: + [WebUrl ]: The original web url of the artifact being restored. [Id ]: The unique identifier for an entity. Read-only. - [SiteId ]: + [SiteId ]: Id of the site in which artifact is present. [SiteRestoreArtifacts ]: A collection of restore points and destination details that can be used to restore SharePoint sites. [CompletionDateTime ]: The time when restoration of restore artifact is completed. [DestinationType ]: destinationType @@ -915,7 +923,7 @@ Read-only. [SiteIds ]: The list of SharePoint site IDs that are added to the corresponding SharePoint restore session in a bulk operation. [SiteWebUrls ]: The list of SharePoint site URLs that are added to the corresponding SharePoint restore session in a bulk operation. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -926,7 +934,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -942,21 +950,22 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -GRANULARSITERESTOREARTIFACTS : . - [BrowseSessionId ]: - [CompletionDateTime ]: - [RestorePointDateTime ]: - [RestoredItemKey ]: - [RestoredItemPath ]: - [RestoredItemWebUrl ]: - [StartDateTime ]: +GRANULARSITERESTOREARTIFACTS : A collection of browse session ID and item key details that can be used to restore SharePoint files and folders. + [BrowseSessionId ]: The unique identifier of the browseSession + [CompletionDateTime ]: Date time when the artifact's restoration completes. + [RestorePointDateTime ]: The restore point date time to which the artifact is restored. + [RestoredItemKey ]: The unique identifier for the restored artifact. + [RestoredItemPath ]: The path of the restored artifact. +It's the path of the folder where all the artifacts are restored within a granular restore session. + [RestoredItemWebUrl ]: The web url of the restored artifact. + [StartDateTime ]: The start time of the restoration. [Status ]: artifactRestoreStatus - [WebUrl ]: + [WebUrl ]: The original web url of the artifact being restored. [Id ]: The unique identifier for an entity. Read-only. - [SiteId ]: + [SiteId ]: Id of the site in which artifact is present. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -991,7 +1000,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1002,7 +1011,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -RESTORESESSIONARTIFACTCOUNT ``: restoreSessionArtifactCount +RESTORESESSIONARTIFACTCOUNT : restoreSessionArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: The number of artifacts whose restoration completed. [Failed ]: The number of artifacts whose restoration failed. @@ -1117,27 +1126,5 @@ Read-only. ## RELATED LINKS -- [Update-MgSolutionBackupRestoreSharePointRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresession) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresession) +- [](https://learn.microsoft.com/graph/api/sharepointrestoresession-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md new file mode 100644 index 0000000000000..6297c8fa8c958 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -0,0 +1,826 @@ +--- +document type: cmdlet +external help file: Microsoft.Graph.BackupRestore-Help.xml +HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifact +Locale: en-US +Module Name: Microsoft.Graph.BackupRestore +ms.date: 07/31/2026 +PlatyPS schema version: 2024-05-01 +title: Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact +--- + +# Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact + +## SYNOPSIS + +Update the navigation property granularSiteRestoreArtifacts in solutions + +## SYNTAX + +### UpdateExpanded (Default) + +``` +Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact + -GranularSiteRestoreArtifactId -SharePointRestoreSessionId + [-ResponseHeadersVariable ] [-AdditionalProperties ] [-BrowseSessionId ] + [-CompletionDateTime ] [-Id ] [-RestorePointDateTime ] + [-RestoredItemKey ] [-RestoredItemPath ] [-RestoredItemWebUrl ] + [-SiteId ] [-StartDateTime ] [-Status ] [-WebUrl ] [-Break] + [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### Update + +``` +Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact + -GranularSiteRestoreArtifactId -SharePointRestoreSessionId + -BodyParameter [-ResponseHeadersVariable ] + [-Break] [-Headers ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### UpdateViaIdentityExpanded + +``` +Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact + -InputObject [-ResponseHeadersVariable ] + [-AdditionalProperties ] [-BrowseSessionId ] [-CompletionDateTime ] + [-Id ] [-RestorePointDateTime ] [-RestoredItemKey ] + [-RestoredItemPath ] [-RestoredItemWebUrl ] [-SiteId ] + [-StartDateTime ] [-Status ] [-WebUrl ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +### UpdateViaIdentity + +``` +Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact + -InputObject -BodyParameter + [-ResponseHeadersVariable ] [-Break] [-Headers ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] +``` + +## ALIASES + +This cmdlet has the following aliases, + {{Insert list of aliases}} + +## DESCRIPTION + +Update the navigation property granularSiteRestoreArtifacts in solutions + +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + +## PARAMETERS + +### -AdditionalProperties + +Additional Parameters + +```yaml +Type: System.Collections.Hashtable +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BodyParameter + +granularSiteRestoreArtifact +To construct, see NOTES section for BODYPARAMETER properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IMicrosoftGraphGranularSiteRestoreArtifact +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Update + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Break + +Wait for .NET debugger to attach + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -BrowseSessionId + +The unique identifier of the browseSession + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -CompletionDateTime + +Date time when the artifact's restoration completes. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Confirm + +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- cf +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -GranularSiteRestoreArtifactId + +The unique identifier of granularSiteRestoreArtifact + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateExpanded + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Update + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Headers + +Optional headers that will be added to the request. + +```yaml +Type: System.Collections.IDictionary +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelineAppend + +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -HttpPipelinePrepend + +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[] +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Id + +The unique identifier for an entity. +Read-only. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -InputObject + +Identity Parameter +To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + +```yaml +Type: Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateViaIdentity + Position: Named + IsRequired: true + ValueFromPipeline: true + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Proxy + +The URI for the proxy server to use + +```yaml +Type: System.Uri +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyCredential + +Credentials for a proxy server to use for the remote call + +```yaml +Type: System.Management.Automation.PSCredential +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ProxyUseDefaultCredentials + +Use the default credentials for the proxy + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: False +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -ResponseHeadersVariable + +Optional Response Headers Variable. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: +- RHV +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestoredItemKey + +The unique identifier for the restored artifact. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestoredItemPath + +The path of the restored artifact. +It's the path of the folder where all the artifacts are restored within a granular restore session. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestoredItemWebUrl + +The web url of the restored artifact. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -RestorePointDateTime + +The restore point date time to which the artifact is restored. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -SharePointRestoreSessionId + +The unique identifier of sharePointRestoreSession + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateExpanded + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: Update + Position: Named + IsRequired: true + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -SiteId + +Id of the site in which artifact is present. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -StartDateTime + +The start time of the restoration. + +```yaml +Type: System.DateTime +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -Status + +artifactRestoreStatus + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WebUrl + +The original web url of the artifact being restored. + +```yaml +Type: System.String +DefaultValue: '' +SupportsWildcards: false +Aliases: [] +ParameterSets: +- Name: UpdateViaIdentityExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +- Name: UpdateExpanded + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### -WhatIf + +Runs the command in a mode that only reports what would happen without performing the actions. + +```yaml +Type: System.Management.Automation.SwitchParameter +DefaultValue: '' +SupportsWildcards: false +Aliases: +- wi +ParameterSets: +- Name: (All) + Position: Named + IsRequired: false + ValueFromPipeline: false + ValueFromPipelineByPropertyName: false + ValueFromRemainingArguments: false +DontShow: false +AcceptedValues: [] +HelpMessage: '' +``` + +### CommonParameters + +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, +-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, +-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see +[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.IBackupRestoreIdentity + +{{ Fill in the Description }} + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphGranularSiteRestoreArtifact + +{{ Fill in the Description }} + +### System.Collections.IDictionary + +{{ Fill in the Description }} + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphGranularSiteRestoreArtifact + +{{ Fill in the Description }} + +## NOTES + +COMPLEX PARAMETER PROPERTIES + +To create the parameters described below, construct a hash table containing the appropriate properties. +For information on hash tables, run Get-Help about_Hash_Tables. + +BODYPARAMETER : granularSiteRestoreArtifact + [(Any) ]: This indicates any property can be added to this object. + [BrowseSessionId ]: The unique identifier of the browseSession + [CompletionDateTime ]: Date time when the artifact's restoration completes. + [RestorePointDateTime ]: The restore point date time to which the artifact is restored. + [RestoredItemKey ]: The unique identifier for the restored artifact. + [RestoredItemPath ]: The path of the restored artifact. +It's the path of the folder where all the artifacts are restored within a granular restore session. + [RestoredItemWebUrl ]: The web url of the restored artifact. + [StartDateTime ]: The start time of the restoration. + [Status ]: artifactRestoreStatus + [WebUrl ]: The original web url of the artifact being restored. + [Id ]: The unique identifier for an entity. +Read-only. + [SiteId ]: Id of the site in which artifact is present. + +INPUTOBJECT : Identity Parameter + [BrowseSessionBaseId ]: The unique identifier of browseSessionBase + [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule + [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit + [DriveProtectionUnitsBulkAdditionJobId ]: The unique identifier of driveProtectionUnitsBulkAdditionJob + [DriveRestoreArtifactId ]: The unique identifier of driveRestoreArtifact + [DriveRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of driveRestoreArtifactsBulkAdditionRequest + [ExchangeProtectionPolicyId ]: The unique identifier of exchangeProtectionPolicy + [ExchangeRestoreSessionId ]: The unique identifier of exchangeRestoreSession + [GranularDriveRestoreArtifactId ]: The unique identifier of granularDriveRestoreArtifact + [GranularMailboxRestoreArtifactId ]: The unique identifier of granularMailboxRestoreArtifact + [GranularSiteRestoreArtifactId ]: The unique identifier of granularSiteRestoreArtifact + [MailboxProtectionRuleId ]: The unique identifier of mailboxProtectionRule + [MailboxProtectionUnitId ]: The unique identifier of mailboxProtectionUnit + [MailboxProtectionUnitsBulkAdditionJobId ]: The unique identifier of mailboxProtectionUnitsBulkAdditionJob + [MailboxRestoreArtifactId ]: The unique identifier of mailboxRestoreArtifact + [MailboxRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of mailboxRestoreArtifactsBulkAdditionRequest + [NextFetchToken ]: Usage: nextFetchToken='{nextFetchToken}' + [OneDriveForBusinessBrowseSessionId ]: The unique identifier of oneDriveForBusinessBrowseSession + [OneDriveForBusinessProtectionPolicyId ]: The unique identifier of oneDriveForBusinessProtectionPolicy + [OneDriveForBusinessRestoreSessionId ]: The unique identifier of oneDriveForBusinessRestoreSession + [ProtectionPolicyBaseId ]: The unique identifier of protectionPolicyBase + [ProtectionUnitBaseId ]: The unique identifier of protectionUnitBase + [RestorePointId ]: The unique identifier of restorePoint + [RestoreSessionBaseId ]: The unique identifier of restoreSessionBase + [ServiceAppId ]: The unique identifier of serviceApp + [SharePointBrowseSessionId ]: The unique identifier of sharePointBrowseSession + [SharePointProtectionPolicyId ]: The unique identifier of sharePointProtectionPolicy + [SharePointRestoreSessionId ]: The unique identifier of sharePointRestoreSession + [SiteProtectionRuleId ]: The unique identifier of siteProtectionRule + [SiteProtectionUnitId ]: The unique identifier of siteProtectionUnit + [SiteProtectionUnitsBulkAdditionJobId ]: The unique identifier of siteProtectionUnitsBulkAdditionJob + [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact + [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest + + +## RELATED LINKS + +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md index 7e3890ed4673f..4a0a7aefa8c56 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact Update the navigation property siteRestoreArtifacts in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +38,7 @@ Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +51,7 @@ Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact [-RestoredSiteId ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -66,7 +62,6 @@ Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -78,6 +73,16 @@ This cmdlet has the following aliases, Update the navigation property siteRestoreArtifacts in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -683,7 +688,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: siteRestoreArtifact +BODYPARAMETER : siteRestoreArtifact [(Any) ]: This indicates any property can be added to this object. [CompletionDateTime ]: The time when restoration of restore artifact is completed. [DestinationType ]: destinationType @@ -743,7 +748,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [RestoredSiteId ]: The new site identifier if the value of the destinationType property is new, and the existing site ID if the value is inPlace. -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -759,7 +764,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -794,7 +799,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -RESTOREPOINT ``: restorePoint +RESTOREPOINT : restorePoint [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -847,27 +852,4 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS -- [Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md index 5b948cacce3a4..bbeaa6afb349b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact Update the navigation property siteRestoreArtifactsBulkAdditionRequests in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -34,7 +31,6 @@ Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdd [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -46,7 +42,6 @@ Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdd [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -62,7 +57,6 @@ Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdd [-SiteWebUrls ] [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -74,7 +68,6 @@ Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdd [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -86,6 +79,16 @@ This cmdlet has the following aliases, Update the navigation property siteRestoreArtifactsBulkAdditionRequests in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -884,7 +887,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: siteRestoreArtifactsBulkAdditionRequest +BODYPARAMETER : siteRestoreArtifactsBulkAdditionRequest [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -931,7 +934,7 @@ Read-only. [SiteIds ]: The list of SharePoint site IDs that are added to the corresponding SharePoint restore session in a bulk operation. [SiteWebUrls ]: The list of SharePoint site URLs that are added to the corresponding SharePoint restore session in a bulk operation. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -942,7 +945,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -958,7 +961,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -993,7 +996,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1004,7 +1007,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONTIMEPERIOD ``: timePeriod +PROTECTIONTIMEPERIOD : timePeriod [(Any) ]: This indicates any property can be added to this object. [EndDateTime ]: The date time of the end of the time period. [StartDateTime ]: The date time of the start of the time period. @@ -1012,27 +1015,4 @@ PROTECTIONTIMEPERIOD ``: timePeriod ## RELATED LINKS -- [Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteInclusionRule.md index 113e3343f9902..6916096714076 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteInclusionRule.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresiteinclusionrule Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreSiteInclusionRule --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestoreSiteInclusionRule Update the navigation property siteInclusionRules in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreSiteInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreSiteInclusionRule?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,6 @@ Update-MgSolutionBackupRestoreSiteInclusionRule -SiteProtectionRuleId [-SiteExpression ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +37,7 @@ Update-MgSolutionBackupRestoreSiteInclusionRule -SiteProtectionRuleId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +51,6 @@ Update-MgSolutionBackupRestoreSiteInclusionRule -InputObject ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +60,7 @@ Update-MgSolutionBackupRestoreSiteInclusionRule -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,6 +72,16 @@ This cmdlet has the following aliases, Update the navigation property siteInclusionRules in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -684,7 +689,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: siteProtectionRule +BODYPARAMETER : siteProtectionRule [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -721,7 +726,7 @@ Read-only. [SiteExpression ]: Contains a site expression. For examples, see siteExpression example. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -732,7 +737,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -748,7 +753,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -783,7 +788,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -797,27 +802,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgSolutionBackupRestoreSiteInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresiteinclusionrule) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresiteinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnit.md index a2bf6aa7d45bb..d735881f522f7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnit.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresiteprotectionunit Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreSiteProtectionUnit --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestoreSiteProtectionUnit Update the navigation property siteProtectionUnits in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreSiteProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreSiteProtectionUnit?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,7 @@ Update-MgSolutionBackupRestoreSiteProtectionUnit -SiteProtectionUnitId [-ProtectionSources ] [-SiteId ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +38,7 @@ Update-MgSolutionBackupRestoreSiteProtectionUnit -SiteProtectionUnitId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +52,7 @@ Update-MgSolutionBackupRestoreSiteProtectionUnit -InputObject ] [-SiteId ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -65,7 +62,7 @@ Update-MgSolutionBackupRestoreSiteProtectionUnit -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -77,6 +74,16 @@ This cmdlet has the following aliases, Update the navigation property siteProtectionUnits in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -743,7 +750,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: siteProtectionUnit +BODYPARAMETER : siteProtectionUnit [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -787,7 +794,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [SiteId ]: Unique identifier of the SharePoint site. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -798,7 +805,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -814,7 +821,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -849,7 +856,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -863,27 +870,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgSolutionBackupRestoreSiteProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresiteprotectionunit) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresiteprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md index c6432f1276dcc..b5976b6e30b69 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md @@ -4,7 +4,7 @@ external help file: Microsoft.Graph.BackupRestore-Help.xml HelpUri: https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob Locale: en-US Module Name: Microsoft.Graph.BackupRestore -ms.date: 06/05/2026 +ms.date: 07/31/2026 PlatyPS schema version: 2024-05-01 title: Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob --- @@ -15,9 +15,6 @@ title: Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob Update the navigation property siteProtectionUnitsBulkAdditionJobs in solutions -> [!NOTE] -> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob?view=graph-powershell-beta) - ## SYNTAX ### UpdateExpanded (Default) @@ -31,7 +28,7 @@ Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob [-SiteIds ] [-SiteWebUrls ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -43,7 +40,6 @@ Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -57,7 +53,7 @@ Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob [-SiteIds ] [-SiteWebUrls ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -69,7 +65,6 @@ Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -81,6 +76,16 @@ This cmdlet has the following aliases, Update the navigation property siteProtectionUnitsBulkAdditionJobs in solutions +## EXAMPLES + +### EXAMPLE 1 + +{{ Add code here }} + +### EXAMPLE 2 + +{{ Add code here }} + ## PARAMETERS ### -AdditionalProperties @@ -714,7 +719,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER ``: siteProtectionUnitsBulkAdditionJob +BODYPARAMETER : siteProtectionUnitsBulkAdditionJob [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -751,7 +756,7 @@ Read-only. [SiteIds ]: The list of SharePoint site IDs to add to the SharePoint protection policy. [SiteWebUrls ]: The list of SharePoint site URLs to add to the SharePoint protection policy. -CREATEDBY ``: identitySet +CREATEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -762,7 +767,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR ``: publicError +ERROR : publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -778,7 +783,7 @@ ERROR ``: publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT ``: Identity Parameter +INPUTOBJECT : Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -813,7 +818,7 @@ INPUTOBJECT ``: Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY ``: identitySet +LASTMODIFIEDBY : identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -827,27 +832,4 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob) - - - - - - - - - - - - - - - - - - - - - - - +- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob) From 83492d77c12f8cfab355c122d21767837623ad93 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:37:24 +0000 Subject: [PATCH 11/16] Escaped disallowed html tags --- .../Enable-MgSolutionBackupRestore.md | 24 ++++++++++++- .../Get-MgSolutionBackupRestore.md | 22 ++++++++++++ ...et-MgSolutionBackupRestoreBrowseSession.md | 24 ++++++++++++- ...SolutionBackupRestoreBrowseSessionCount.md | 22 ++++++++++++ ...SolutionBackupRestoreDriveInclusionRule.md | 24 ++++++++++++- ...ionBackupRestoreDriveInclusionRuleCount.md | 22 ++++++++++++ ...olutionBackupRestoreDriveProtectionUnit.md | 24 ++++++++++++- ...storeDriveProtectionUnitBulkAdditionJob.md | 24 ++++++++++++- ...DriveProtectionUnitBulkAdditionJobCount.md | 22 ++++++++++++ ...onBackupRestoreDriveProtectionUnitCount.md | 22 ++++++++++++ ...onBackupRestoreExchangeProtectionPolicy.md | 24 ++++++++++++- ...kupRestoreExchangeProtectionPolicyCount.md | 22 ++++++++++++ ...ngeProtectionPolicyMailboxInclusionRule.md | 24 ++++++++++++- ...otectionPolicyMailboxInclusionRuleCount.md | 24 ++++++++++++- ...geProtectionPolicyMailboxProtectionUnit.md | 24 ++++++++++++- ...icyMailboxProtectionUnitBulkAdditionJob.md | 24 ++++++++++++- ...ilboxProtectionUnitBulkAdditionJobCount.md | 24 ++++++++++++- ...tectionPolicyMailboxProtectionUnitCount.md | 24 ++++++++++++- ...tionBackupRestoreExchangeRestoreSession.md | 24 ++++++++++++- ...ackupRestoreExchangeRestoreSessionCount.md | 22 ++++++++++++ ...reSessionGranularMailboxRestoreArtifact.md | 24 ++++++++++++- ...sionGranularMailboxRestoreArtifactCount.md | 24 ++++++++++++- ...nularMailboxRestoreArtifactRestorePoint.md | 24 ++++++++++++- ...ngeRestoreSessionMailboxRestoreArtifact.md | 24 ++++++++++++- ...ilboxRestoreArtifactBulkAdditionRequest.md | 24 ++++++++++++- ...RestoreArtifactBulkAdditionRequestCount.md | 24 ++++++++++++- ...storeSessionMailboxRestoreArtifactCount.md | 24 ++++++++++++- ...ssionMailboxRestoreArtifactRestorePoint.md | 24 ++++++++++++- ...lutionBackupRestoreMailboxInclusionRule.md | 24 ++++++++++++- ...nBackupRestoreMailboxInclusionRuleCount.md | 22 ++++++++++++ ...utionBackupRestoreMailboxProtectionUnit.md | 24 ++++++++++++- ...oreMailboxProtectionUnitBulkAdditionJob.md | 24 ++++++++++++- ...ilboxProtectionUnitBulkAdditionJobCount.md | 22 ++++++++++++ ...BackupRestoreMailboxProtectionUnitCount.md | 22 ++++++++++++ ...RestoreOneDriveForBusinessBrowseSession.md | 24 ++++++++++++- ...reOneDriveForBusinessBrowseSessionCount.md | 22 ++++++++++++ ...toreOneDriveForBusinessProtectionPolicy.md | 24 ++++++++++++- ...neDriveForBusinessProtectionPolicyCount.md | 22 ++++++++++++ ...inessProtectionPolicyDriveInclusionRule.md | 24 ++++++++++++- ...ProtectionPolicyDriveInclusionRuleCount.md | 24 ++++++++++++- ...nessProtectionPolicyDriveProtectionUnit.md | 24 ++++++++++++- ...olicyDriveProtectionUnitBulkAdditionJob.md | 24 ++++++++++++- ...DriveProtectionUnitBulkAdditionJobCount.md | 24 ++++++++++++- ...rotectionPolicyDriveProtectionUnitCount.md | 24 ++++++++++++- ...estoreOneDriveForBusinessRestoreSession.md | 24 ++++++++++++- ...eOneDriveForBusinessRestoreSessionCount.md | 22 ++++++++++++ ...inessRestoreSessionDriveRestoreArtifact.md | 24 ++++++++++++- ...DriveRestoreArtifactBulkAdditionRequest.md | 24 ++++++++++++- ...RestoreArtifactBulkAdditionRequestCount.md | 24 ++++++++++++- ...RestoreSessionDriveRestoreArtifactCount.md | 24 ++++++++++++- ...SessionDriveRestoreArtifactRestorePoint.md | 24 ++++++++++++- ...toreSessionGranularDriveRestoreArtifact.md | 24 ++++++++++++- ...essionGranularDriveRestoreArtifactCount.md | 24 ++++++++++++- .../Get-MgSolutionBackupRestorePoint.md | 24 ++++++++++++- .../Get-MgSolutionBackupRestorePointCount.md | 22 ++++++++++++ ...olutionBackupRestorePointProtectionUnit.md | 24 ++++++++++++- ...MgSolutionBackupRestoreProtectionPolicy.md | 24 ++++++++++++- ...utionBackupRestoreProtectionPolicyCount.md | 22 ++++++++++++ ...t-MgSolutionBackupRestoreProtectionUnit.md | 24 ++++++++++++- ...toreProtectionUnitAsDriveProtectionUnit.md | 24 ++++++++++++- ...reProtectionUnitAsMailboxProtectionUnit.md | 24 ++++++++++++- ...storeProtectionUnitAsSiteProtectionUnit.md | 24 ++++++++++++- ...olutionBackupRestoreProtectionUnitCount.md | 22 ++++++++++++ ...rotectionUnitCountAsDriveProtectionUnit.md | 22 ++++++++++++ ...tectionUnitCountAsMailboxProtectionUnit.md | 22 ++++++++++++ ...ProtectionUnitCountAsSiteProtectionUnit.md | 22 ++++++++++++ .../Get-MgSolutionBackupRestoreServiceApp.md | 24 ++++++++++++- ...-MgSolutionBackupRestoreServiceAppCount.md | 22 ++++++++++++ .../Get-MgSolutionBackupRestoreSession.md | 24 ++++++++++++- ...Get-MgSolutionBackupRestoreSessionCount.md | 22 ++++++++++++ ...ionBackupRestoreSharePointBrowseSession.md | 24 ++++++++++++- ...ckupRestoreSharePointBrowseSessionCount.md | 22 ++++++++++++ ...BackupRestoreSharePointProtectionPolicy.md | 24 ++++++++++++- ...pRestoreSharePointProtectionPolicyCount.md | 22 ++++++++++++ ...ePointProtectionPolicySiteInclusionRule.md | 24 ++++++++++++- ...tProtectionPolicySiteInclusionRuleCount.md | 24 ++++++++++++- ...PointProtectionPolicySiteProtectionUnit.md | 24 ++++++++++++- ...PolicySiteProtectionUnitBulkAdditionJob.md | 24 ++++++++++++- ...ySiteProtectionUnitBulkAdditionJobCount.md | 24 ++++++++++++- ...ProtectionPolicySiteProtectionUnitCount.md | 24 ++++++++++++- ...onBackupRestoreSharePointRestoreSession.md | 24 ++++++++++++- ...kupRestoreSharePointRestoreSessionCount.md | 22 ++++++++++++ ...storeSessionGranularSiteRestoreArtifact.md | 24 ++++++++++++- ...SessionGranularSiteRestoreArtifactCount.md | 24 ++++++++++++- ...ePointRestoreSessionSiteRestoreArtifact.md | 24 ++++++++++++- ...nSiteRestoreArtifactBulkAdditionRequest.md | 24 ++++++++++++- ...RestoreArtifactBulkAdditionRequestCount.md | 24 ++++++++++++- ...tRestoreSessionSiteRestoreArtifactCount.md | 24 ++++++++++++- ...eSessionSiteRestoreArtifactRestorePoint.md | 24 ++++++++++++- ...gSolutionBackupRestoreSiteInclusionRule.md | 24 ++++++++++++- ...tionBackupRestoreSiteInclusionRuleCount.md | 22 ++++++++++++ ...SolutionBackupRestoreSiteProtectionUnit.md | 24 ++++++++++++- ...estoreSiteProtectionUnitBulkAdditionJob.md | 24 ++++++++++++- ...eSiteProtectionUnitBulkAdditionJobCount.md | 22 ++++++++++++ ...ionBackupRestoreSiteProtectionUnitCount.md | 22 ++++++++++++ ...MgSolutionBackupRestoreProtectionPolicy.md | 24 ++++++++++++- ...alize-MgSolutionBackupRestoreServiceApp.md | 26 ++++++++++++-- ...itialize-MgSolutionBackupRestoreSession.md | 24 ++++++++++++- ...rowseSolutionBackupRestoreBrowseSession.md | 28 +++++++++++++-- ...teSolutionBackupRestoreProtectionPolicy.md | 24 ++++++++++++- ...activateSolutionBackupRestoreServiceApp.md | 24 ++++++++++++- ...oardSolutionBackupRestoreProtectionUnit.md | 24 ++++++++++++- .../Microsoft.Graph.BackupRestore.md | 19 +++++++++++ ...ew-MgSolutionBackupRestoreBrowseSession.md | 26 ++++++++++++-- ...SolutionBackupRestoreDriveInclusionRule.md | 30 +++++++++++++--- ...olutionBackupRestoreDriveProtectionUnit.md | 30 +++++++++++++--- ...storeDriveProtectionUnitBulkAdditionJob.md | 30 +++++++++++++--- ...onBackupRestoreExchangeProtectionPolicy.md | 30 +++++++++++++--- ...tionBackupRestoreExchangeRestoreSession.md | 32 ++++++++++++++--- ...reSessionGranularMailboxRestoreArtifact.md | 30 +++++++++++++--- ...ngeRestoreSessionMailboxRestoreArtifact.md | 30 +++++++++++++--- ...ilboxRestoreArtifactBulkAdditionRequest.md | 34 +++++++++++++++---- ...lutionBackupRestoreMailboxInclusionRule.md | 30 +++++++++++++--- ...utionBackupRestoreMailboxProtectionUnit.md | 30 +++++++++++++--- ...oreMailboxProtectionUnitBulkAdditionJob.md | 30 +++++++++++++--- ...RestoreOneDriveForBusinessBrowseSession.md | 26 ++++++++++++-- ...toreOneDriveForBusinessProtectionPolicy.md | 30 +++++++++++++--- ...estoreOneDriveForBusinessRestoreSession.md | 32 ++++++++++++++--- ...inessRestoreSessionDriveRestoreArtifact.md | 30 +++++++++++++--- ...DriveRestoreArtifactBulkAdditionRequest.md | 34 +++++++++++++++---- ...toreSessionGranularDriveRestoreArtifact.md | 26 ++++++++++++-- .../New-MgSolutionBackupRestorePoint.md | 26 ++++++++++++-- ...MgSolutionBackupRestoreProtectionPolicy.md | 30 +++++++++++++--- .../New-MgSolutionBackupRestoreServiceApp.md | 28 +++++++++++++-- .../New-MgSolutionBackupRestoreSession.md | 32 ++++++++++++++--- ...ionBackupRestoreSharePointBrowseSession.md | 26 ++++++++++++-- ...BackupRestoreSharePointProtectionPolicy.md | 30 +++++++++++++--- ...onBackupRestoreSharePointRestoreSession.md | 32 ++++++++++++++--- ...storeSessionGranularSiteRestoreArtifact.md | 26 ++++++++++++-- ...ePointRestoreSessionSiteRestoreArtifact.md | 30 +++++++++++++--- ...nSiteRestoreArtifactBulkAdditionRequest.md | 34 +++++++++++++++---- ...gSolutionBackupRestoreSiteInclusionRule.md | 30 +++++++++++++--- ...SolutionBackupRestoreSiteProtectionUnit.md | 30 +++++++++++++--- ...estoreSiteProtectionUnitBulkAdditionJob.md | 30 +++++++++++++--- .../Remove-MgSolutionBackupRestore.md | 22 ++++++++++++ ...ve-MgSolutionBackupRestoreBrowseSession.md | 24 ++++++++++++- ...SolutionBackupRestoreDriveInclusionRule.md | 24 ++++++++++++- ...olutionBackupRestoreDriveProtectionUnit.md | 24 ++++++++++++- ...storeDriveProtectionUnitBulkAdditionJob.md | 24 ++++++++++++- ...onBackupRestoreExchangeProtectionPolicy.md | 24 ++++++++++++- ...tionBackupRestoreExchangeRestoreSession.md | 24 ++++++++++++- ...reSessionGranularMailboxRestoreArtifact.md | 24 ++++++++++++- ...ngeRestoreSessionMailboxRestoreArtifact.md | 24 ++++++++++++- ...ilboxRestoreArtifactBulkAdditionRequest.md | 24 ++++++++++++- ...lutionBackupRestoreMailboxInclusionRule.md | 24 ++++++++++++- ...utionBackupRestoreMailboxProtectionUnit.md | 24 ++++++++++++- ...oreMailboxProtectionUnitBulkAdditionJob.md | 24 ++++++++++++- ...RestoreOneDriveForBusinessBrowseSession.md | 24 ++++++++++++- ...toreOneDriveForBusinessProtectionPolicy.md | 24 ++++++++++++- ...estoreOneDriveForBusinessRestoreSession.md | 24 ++++++++++++- ...inessRestoreSessionDriveRestoreArtifact.md | 24 ++++++++++++- ...DriveRestoreArtifactBulkAdditionRequest.md | 24 ++++++++++++- ...toreSessionGranularDriveRestoreArtifact.md | 24 ++++++++++++- .../Remove-MgSolutionBackupRestorePoint.md | 24 ++++++++++++- ...MgSolutionBackupRestoreProtectionPolicy.md | 24 ++++++++++++- ...emove-MgSolutionBackupRestoreServiceApp.md | 24 ++++++++++++- .../Remove-MgSolutionBackupRestoreSession.md | 24 ++++++++++++- ...ionBackupRestoreSharePointBrowseSession.md | 24 ++++++++++++- ...BackupRestoreSharePointProtectionPolicy.md | 24 ++++++++++++- ...onBackupRestoreSharePointRestoreSession.md | 24 ++++++++++++- ...storeSessionGranularSiteRestoreArtifact.md | 24 ++++++++++++- ...ePointRestoreSessionSiteRestoreArtifact.md | 24 ++++++++++++- ...nSiteRestoreArtifactBulkAdditionRequest.md | 24 ++++++++++++- ...gSolutionBackupRestoreSiteInclusionRule.md | 24 ++++++++++++- ...SolutionBackupRestoreSiteProtectionUnit.md | 24 ++++++++++++- ...estoreSiteProtectionUnitBulkAdditionJob.md | 24 ++++++++++++- .../Search-MgSolutionBackupRestorePoint.md | 28 +++++++++++++-- ...tionBackupRestoreProtectionUnitOffboard.md | 24 ++++++++++++- .../Update-MgSolutionBackupRestore.md | 26 ++++++++++++-- ...te-MgSolutionBackupRestoreBrowseSession.md | 28 +++++++++++++-- ...SolutionBackupRestoreDriveInclusionRule.md | 32 ++++++++++++++--- ...olutionBackupRestoreDriveProtectionUnit.md | 32 ++++++++++++++--- ...storeDriveProtectionUnitBulkAdditionJob.md | 32 ++++++++++++++--- ...onBackupRestoreExchangeProtectionPolicy.md | 32 ++++++++++++++--- ...tionBackupRestoreExchangeRestoreSession.md | 34 +++++++++++++++---- ...reSessionGranularMailboxRestoreArtifact.md | 30 +++++++++++++--- ...ngeRestoreSessionMailboxRestoreArtifact.md | 30 +++++++++++++--- ...ilboxRestoreArtifactBulkAdditionRequest.md | 34 +++++++++++++++---- ...lutionBackupRestoreMailboxInclusionRule.md | 32 ++++++++++++++--- ...utionBackupRestoreMailboxProtectionUnit.md | 32 ++++++++++++++--- ...oreMailboxProtectionUnitBulkAdditionJob.md | 32 ++++++++++++++--- ...RestoreOneDriveForBusinessBrowseSession.md | 28 +++++++++++++-- ...toreOneDriveForBusinessProtectionPolicy.md | 32 ++++++++++++++--- ...estoreOneDriveForBusinessRestoreSession.md | 34 +++++++++++++++---- ...inessRestoreSessionDriveRestoreArtifact.md | 30 +++++++++++++--- ...DriveRestoreArtifactBulkAdditionRequest.md | 34 +++++++++++++++---- ...toreSessionGranularDriveRestoreArtifact.md | 26 ++++++++++++-- .../Update-MgSolutionBackupRestorePoint.md | 28 +++++++++++++-- ...MgSolutionBackupRestoreProtectionPolicy.md | 32 ++++++++++++++--- ...pdate-MgSolutionBackupRestoreServiceApp.md | 30 +++++++++++++--- .../Update-MgSolutionBackupRestoreSession.md | 34 +++++++++++++++---- ...ionBackupRestoreSharePointBrowseSession.md | 28 +++++++++++++-- ...BackupRestoreSharePointProtectionPolicy.md | 32 ++++++++++++++--- ...onBackupRestoreSharePointRestoreSession.md | 34 +++++++++++++++---- ...storeSessionGranularSiteRestoreArtifact.md | 26 ++++++++++++-- ...ePointRestoreSessionSiteRestoreArtifact.md | 30 +++++++++++++--- ...nSiteRestoreArtifactBulkAdditionRequest.md | 34 +++++++++++++++---- ...gSolutionBackupRestoreSiteInclusionRule.md | 32 ++++++++++++++--- ...SolutionBackupRestoreSiteProtectionUnit.md | 32 ++++++++++++++--- ...estoreSiteProtectionUnitBulkAdditionJob.md | 32 ++++++++++++++--- 200 files changed, 4776 insertions(+), 379 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md index 9ac138f8e6cea..9703a4b779287 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md @@ -364,7 +364,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [AppOwnerTenantId ]: @@ -373,3 +373,25 @@ BODYPARAMETER : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -566,3 +566,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorebrowsesession) - [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-browsesessions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md index 577c3f12514da..d600b4b82906e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorebrowsesessioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRule.md index fd70f8f78a3eb..67560b43ab8ae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRule.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -566,3 +566,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveinclusionrule) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRuleCount.md index 37a3b93cfb75b..88fddb7860018 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRuleCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveinclusionrulecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnit.md index 8f1be40c55558..14630aa72d5ca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnit.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -566,3 +566,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunit) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md index 8b3b4431674d1..6dd79ff383bed 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -566,3 +566,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.md index aa20f2a852934..f4c3fed83932b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunitbulkadditionjobcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitCount.md index 2f56de148804a..ff89ab29035e8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunitcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicy.md index 02cc3a36338b3..ec65d628e26b5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicy.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -566,3 +566,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicy) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount.md index 39c8a5bb62d13..cf9f47c18cbaa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicycount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md index c23b506a596cb..eddb358cde56e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md @@ -563,7 +563,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -604,3 +604,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxinclusionrule) - [](https://learn.microsoft.com/graph/api/protectionrulebase-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/exchangeprotectionpolicy-list-mailboxinclusionrules?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md index bb9df3ab82aa2..0a0283237eaef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxinclusionrulecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit.md index 3786e41efd01e..96088fcd2a297 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit.md @@ -555,7 +555,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -594,3 +594,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunit) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.md index d6ddd6fa54108..51bcdd21b8d2e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.md @@ -556,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -597,3 +597,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunitbulkadditionjob) - [](https://learn.microsoft.com/graph/api/mailboxprotectionunitsbulkadditionjobs-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/exchangeprotectionpolicy-list-mailboxprotectionunitsbulkadditionjobs?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount.md index f4f423a0cb5fc..1db3acff21967 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunitbulkadditionjobcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount.md index 2d680d4222574..a3dfe0e0b01c2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunitcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSession.md index 54c4ba3dc6133..e1b65cae89d94 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSession.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -566,3 +566,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionCount.md index 61d014bc43645..a4c0e645948a3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index ae7054dbb5a66..6f3cb46104067 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md @@ -556,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -595,3 +595,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount.md index b2f1e1570e4a9..23865098204eb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifactcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint.md index f150e96220ed5..8813d0f85f65d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint.md @@ -366,7 +366,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -405,3 +405,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifactrestorepoint) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md index 3cb57b3e7d034..4d8699a46012e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md @@ -555,7 +555,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -595,3 +595,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact) - [](https://learn.microsoft.com/graph/api/exchangerestoresession-list-mailboxrestoreartifacts?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md index 87a39fee8bc02..b57d038b9984b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md @@ -556,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -597,3 +597,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest) - [](https://learn.microsoft.com/graph/api/mailboxrestoreartifactsbulkadditionrequest-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/exchangerestoresession-list-mailboxrestoreartifactsbulkadditionrequests?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount.md index fc0655c9d25f2..7804ef4014039 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequestcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount.md index f7c69a577df9a..c4246c20563d9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.md index 4af1732db93c7..0227308540245 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.md @@ -365,7 +365,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -404,3 +404,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactrestorepoint) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRule.md index 855359ce1c918..f233ba3642c46 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRule.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -566,3 +566,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxinclusionrule) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRuleCount.md index f7eba1049e9c2..89e985ae2be00 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRuleCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxinclusionrulecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnit.md index 0b584c5e11ad3..790889675bd46 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnit.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -566,3 +566,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunit) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md index 96e4a700a638c..6376b2330f482 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -566,3 +566,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.md index c4cc47371b29b..5d8c5a92f6d35 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjobcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md index fd5e6ff443676..5af2c1e14d8b5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunitcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md index fd50c92c6f6a1..2ba3e84481f0b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -568,3 +568,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessbrowsesession) - [](https://learn.microsoft.com/graph/api/onedriveforbusinessbrowsesession-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-onedriveforbusinessbrowsesessions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md index 20eb23f573b30..27ded2af217c3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessbrowsesessioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md index d2442124ecaaa..3182e425270dd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -566,3 +566,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount.md index 0f90385ce5e92..da8303c53a3a0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicycount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md index b0f734ce94aa4..82335e38b5a65 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md @@ -564,7 +564,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -605,3 +605,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveinclusionrule) - [](https://learn.microsoft.com/graph/api/protectionrulebase-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/onedriveforbusinessprotectionpolicy-list-driveinclusionrules?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md index 93988d0ef057b..043cbbb254703 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveinclusionrulecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit.md index af4ad9ea7da40..5ffaca5c973fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit.md @@ -556,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -596,3 +596,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunit) - [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-driveprotectionunits?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.md index 93e833a8a1124..8a12a9d2d3f01 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.md @@ -556,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -597,3 +597,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunitbulkadditionjob) - [](https://learn.microsoft.com/graph/api/driveprotectionunitsbulkadditionjobs-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/onedriveforbusinessprotectionpolicy-list-driveprotectionunitsbulkadditionjobs?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.md index 5dc0f645b5735..99704576762c4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunitbulkadditionjobcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount.md index 829e452e907fe..0f45d63749816 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunitcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md index 88af7c55b8e65..1594f694ae2f0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -566,3 +566,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount.md index f41bda72daa74..c1b3b74e93ab4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md index 220c3de6eb82a..66d5904910967 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md @@ -556,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -596,3 +596,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact) - [](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-list-driverestoreartifacts?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md index e209b796fa735..50c775e7de9f3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md @@ -556,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -597,3 +597,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest) - [](https://learn.microsoft.com/graph/api/driverestoreartifactsbulkadditionrequest-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-list-driverestoreartifactsbulkadditionrequests?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount.md index 3d7b81b2137dd..66a5755f33dfd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequestcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount.md index e85e263e9f777..5cfd18c3d3921 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.md index bc7f84ff2fb04..115dd4c11fdcf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.md @@ -366,7 +366,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -405,3 +405,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactrestorepoint) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md index b4a93b39396d5..e5dfc0a12cd32 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -556,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -596,3 +596,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifact) - [](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-list-granulardriverestoreartifacts?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md index b499dbb3c02a5..e83783e8ec861 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifactcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePoint.md index 94d7880f92925..5ca905074873e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePoint.md @@ -525,7 +525,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -565,3 +565,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorepoint) - [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-restorepoints?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md index 57923c5d1ee24..0578da429f7cd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorepointcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointProtectionUnit.md index 090e471a7ad49..b999b9e9ddc9b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointProtectionUnit.md @@ -343,7 +343,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -382,3 +382,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorepointprotectionunit) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicy.md index de2099a0a7810..85eb3c9f85894 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicy.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -566,3 +566,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionpolicy) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicyCount.md index b5e56c91cccf9..eb4f7b00c878f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicyCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionpolicycount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnit.md index 1b4eee587578b..a16f38361fcb1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnit.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -567,3 +567,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunit) - [](https://learn.microsoft.com/graph/api/protectionunitbase-get?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.md index 9b7466f7a6e57..47672338fc788 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -567,3 +567,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitasdriveprotectionunit) - [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-driveprotectionunits?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.md index c64a880348e12..dc5929c73b09c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -567,3 +567,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitasmailboxprotectionunit) - [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-mailboxprotectionunits?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.md index 5eff07d4d1b0d..1b2607c252536 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -567,3 +567,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitassiteprotectionunit) - [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-siteprotectionunits?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCount.md index c40038c62450a..7920fe0362194 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit.md index a2f3463f63aa1..0dea6b4d7e893 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcountasdriveprotectionunit) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit.md index 5ae35feb3dd90..cd3a0a2c0248c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcountasmailboxprotectionunit) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit.md index f6866620db75c..c1ec612d7ecdb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcountassiteprotectionunit) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceApp.md index 4272dfd350b86..ac06f2d799f45 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceApp.md @@ -526,7 +526,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -567,3 +567,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreserviceapp) - [](https://learn.microsoft.com/graph/api/serviceapp-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-serviceapps?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceAppCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceAppCount.md index ecca9d7ca5beb..1d0c278a4996f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceAppCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceAppCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreserviceappcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSession.md index 8cf32688e8bb7..75922db978fd7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSession.md @@ -526,7 +526,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -567,3 +567,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresession) - [](https://learn.microsoft.com/graph/api/restoresessionbase-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-restoresessions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md index bef90249d1e2d..628af544471ee 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresessioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md index 1ca6133c1ed13..0ef059e2596a4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -568,3 +568,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointbrowsesession) - [](https://learn.microsoft.com/graph/api/sharepointbrowsesession-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-sharepointbrowsesessions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md index da041f7c31763..b5281a9e49099 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointbrowsesessioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md index 1564902005bcc..ae0739f1bb6d0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -566,3 +566,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicy) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount.md index f07c0c4d874a3..5a8484d31dba9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicycount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md index 2686fc234314c..dbd5db7bc510d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md @@ -563,7 +563,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -604,3 +604,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteinclusionrule) - [](https://learn.microsoft.com/graph/api/protectionrulebase-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/sharepointprotectionpolicy-list-siteinclusionrules?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md index dccebbb2797e3..077cc667ef59a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteinclusionrulecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit.md index d8c33236e0c35..7edcebf049227 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit.md @@ -555,7 +555,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -595,3 +595,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunit) - [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-siteprotectionunits?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob.md index 8f080dc0d4b0f..4cc9beed0dc3d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob.md @@ -556,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -597,3 +597,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunitbulkadditionjob) - [](https://learn.microsoft.com/graph/api/siteprotectionunitsbulkadditionjobs-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/sharepointprotectionpolicy-list-siteprotectionunitsbulkadditionjobs?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount.md index 37891e9074d59..bd747dbb7d436 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunitbulkadditionjobcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount.md index 3296bd749cfb2..0b1cf017b4852 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunitcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSession.md index e04ff99cad94d..553ecb11acf47 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSession.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -566,3 +566,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionCount.md index 73952f2cb1732..1ab61cba05064 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessioncount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md index b014a870600eb..4377d55b9c677 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -556,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -596,3 +596,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifact) - [](https://learn.microsoft.com/graph/api/sharepointrestoresession-list-granularsiterestoreartifacts?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md index e991c0d444d69..5b3950ee3217f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifactcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md index a2a65f2dc21bc..9b3225401d134 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md @@ -555,7 +555,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -595,3 +595,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact) - [](https://learn.microsoft.com/graph/api/sharepointrestoresession-list-siterestoreartifacts?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md index 0d378566ae3ca..1bc3a6e6fca64 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md @@ -556,7 +556,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -597,3 +597,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest) - [](https://learn.microsoft.com/graph/api/siterestoreartifactsbulkadditionrequest-get?view=graph-rest-1.0) - [](https://learn.microsoft.com/graph/api/sharepointrestoresession-list-siterestoreartifactsbulkadditionrequests?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount.md index cb465ba5d3b9a..b6779d4e802f7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequestcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount.md index 1ae8ee010e3ed..6d155489937d7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -381,3 +381,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint.md index c692ccf227545..fdd9e6e80d15b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint.md @@ -365,7 +365,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -404,3 +404,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactrestorepoint) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRule.md index a404689b49f55..e3d25ae88621b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRule.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -566,3 +566,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteinclusionrule) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRuleCount.md index 6e8b915a3062a..31ce0ce2c34a8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRuleCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteinclusionrulecount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnit.md index bf7e1148b7914..4b0b9a371cd7c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnit.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -566,3 +566,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunit) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md index 63729623362ab..7f2f6c0e3cbfd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md @@ -527,7 +527,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -566,3 +566,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.md index 9f1514884c64d..059ec988f02d4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunitbulkadditionjobcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitCount.md index 2751d1bef5b35..078790ba1cfff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitCount.md @@ -282,3 +282,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunitcount) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreProtectionPolicy.md index c0590587f5558..def62329d7cd4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreProtectionPolicy.md @@ -346,7 +346,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -386,3 +386,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/initialize-mgsolutionbackuprestoreprotectionpolicy) - [](https://learn.microsoft.com/graph/api/protectionpolicybase-activate?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md index 031a3c38fc56e..079498a2bd1e8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md @@ -462,11 +462,11 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [EffectiveDateTime ]: -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -506,3 +506,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/initialize-mgsolutionbackuprestoreserviceapp) - [](https://learn.microsoft.com/graph/api/serviceapp-activate?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreSession.md index efe4dc05ac1f2..e0a2bbb0b46e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreSession.md @@ -344,7 +344,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -384,3 +384,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/initialize-mgsolutionbackuprestoresession) - [](https://learn.microsoft.com/graph/api/restoresessionbase-activate?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md index 061ae9b6b7920..519c2042b472d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md @@ -736,21 +736,21 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODY : . +BODY ``: . [(Any) ]: This indicates any property can be added to this object. [BrowseLocationItemKey ]: [BrowseResourceType ]: browsableResourceType [Filter ]: [OrderBy ]: browseQueryOrder -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [BrowseLocationItemKey ]: [BrowseResourceType ]: browsableResourceType [Filter ]: [OrderBy ]: browseQueryOrder -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -789,3 +789,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgbrowsesolutionbackuprestorebrowsesession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md index e45243701ebf5..393ad8fe3bb9e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md @@ -350,7 +350,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -390,3 +390,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgdeactivatesolutionbackuprestoreprotectionpolicy) - [](https://learn.microsoft.com/graph/api/protectionpolicybase-deactivate?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md index 451eeb41703bd..ab3197c5dbc16 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -382,3 +382,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgdeactivatesolutionbackuprestoreserviceapp) - [](https://learn.microsoft.com/graph/api/serviceapp-deactivate?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md index 6e70f7a408935..aaac2f85f62bf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -382,3 +382,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgoffboardsolutionbackuprestoreprotectionunit) - [](https://learn.microsoft.com/graph/api/protectionunitbase-offboard?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Microsoft.Graph.BackupRestore.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Microsoft.Graph.BackupRestore.md index 2706cc83a08c7..0a311b0eb01e3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Microsoft.Graph.BackupRestore.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Microsoft.Graph.BackupRestore.md @@ -497,3 +497,22 @@ Microsoft Graph PowerShell Cmdlets ### [Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob](Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md) + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md index aaeb2e7cf37be..2a77ac6a21ff1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md @@ -517,7 +517,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : browseSessionBase +BODYPARAMETER ``: browseSessionBase [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -545,7 +545,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [RestorePointId ]: [Status ]: browseSessionStatus -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -565,3 +565,25 @@ ERROR : publicError ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestorebrowsesession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveInclusionRule.md index a118656d099d0..f7dc4ac128bfd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveInclusionRule.md @@ -539,7 +539,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : driveProtectionRule +BODYPARAMETER ``: driveProtectionRule [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -576,7 +576,7 @@ Read-only. [DriveExpression ]: Contains a drive expression. For examples, see driveExpression examples. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -587,7 +587,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -603,7 +603,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -618,3 +618,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoredriveinclusionrule) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnit.md index 278406132a4ca..35578f6af75f7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnit.md @@ -587,7 +587,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : driveProtectionUnit +BODYPARAMETER ``: driveProtectionUnit [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -631,7 +631,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [DirectoryObjectId ]: ID of the directory object. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -642,7 +642,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -658,7 +658,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -673,3 +673,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoredriveprotectionunit) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md index 4da44ba742158..e003f9a519fcd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md @@ -561,7 +561,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : driveProtectionUnitsBulkAdditionJob +BODYPARAMETER ``: driveProtectionUnitsBulkAdditionJob [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -598,7 +598,7 @@ Read-only. [DirectoryObjectIds ]: The list of OneDrive directoryObjectIds to add to the OneDrive protection policy. [Drives ]: The list of email addresses to add to the OneDrive protection policy. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -609,7 +609,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -625,7 +625,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -640,3 +640,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md index 5479184cae809..3771ae145e61c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md @@ -636,7 +636,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : exchangeProtectionPolicy +BODYPARAMETER ``: exchangeProtectionPolicy [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -723,7 +723,7 @@ Read-only. [DirectoryObjectIds ]: The list of Exchange directoryObjectIds to add to the Exchange protection policy. [Mailboxes ]: The list of Exchange email addresses to add to the Exchange protection policy. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -734,7 +734,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -860,7 +860,7 @@ Read-only. [DirectoryObjectIds ]: The list of Exchange directoryObjectIds to add to the Exchange protection policy. [Mailboxes ]: The list of Exchange email addresses to add to the Exchange protection policy. -PROTECTIONPOLICYARTIFACTCOUNT : protectionPolicyArtifactCount +PROTECTIONPOLICYARTIFACTCOUNT ``: protectionPolicyArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: [Failed ]: @@ -876,3 +876,25 @@ RETENTIONSETTINGS : Contains the retention se - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangeprotectionpolicy) - [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-exchangeprotectionpolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md index ca433584fa0d5..9f999ea35b01d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md @@ -633,7 +633,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : exchangeRestoreSession +BODYPARAMETER ``: exchangeRestoreSession [(Any) ]: This indicates any property can be added to this object. [CompletedDateTime ]: The time of completion of the restore session. [CreatedBy ]: identitySet @@ -747,7 +747,7 @@ Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding Exchange restore session in a bulk operation. [Mailboxes ]: The list of email addresses that are added to the corresponding Exchange restore session in a bulk operation. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -758,7 +758,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -837,7 +837,7 @@ Read-only. Don't use. [SearchResponseId ]: . -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -954,7 +954,7 @@ Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding Exchange restore session in a bulk operation. [Mailboxes ]: The list of email addresses that are added to the corresponding Exchange restore session in a bulk operation. -RESTORESESSIONARTIFACTCOUNT : restoreSessionArtifactCount +RESTORESESSIONARTIFACTCOUNT ``: restoreSessionArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: The number of artifacts whose restoration completed. [Failed ]: The number of artifacts whose restoration failed. @@ -966,3 +966,25 @@ RESTORESESSIONARTIFACTCOUNT : restor - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresession) - [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-exchangerestoresessions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index 3d09bedd1bb9f..0019334a9bc7d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md @@ -745,7 +745,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : granularMailboxRestoreArtifact +BODYPARAMETER ``: granularMailboxRestoreArtifact [(Any) ]: This indicates any property can be added to this object. [RestoredFolderId ]: The new restored folder identifier for the user. [RestoredItemCount ]: The number of items that are being restored in the folder. @@ -809,7 +809,7 @@ Read-only. Don't use. [SearchResponseId ]: . -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -825,7 +825,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -860,7 +860,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -RESTOREPOINT : restorePoint +RESTOREPOINT ``: restorePoint [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -914,3 +914,25 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md index d087a9c8ca5c4..6b6ee3514fd0e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md @@ -687,7 +687,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : mailboxRestoreArtifact +BODYPARAMETER ``: mailboxRestoreArtifact [(Any) ]: This indicates any property can be added to this object. [CompletionDateTime ]: The time when restoration of restore artifact is completed. [DestinationType ]: destinationType @@ -748,7 +748,7 @@ Read-only. [RestoredFolderId ]: The new restored folder identifier for the user. [RestoredItemCount ]: The number of items that are being restored in the folder. -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -764,7 +764,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -799,7 +799,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -RESTOREPOINT : restorePoint +RESTOREPOINT ``: restorePoint [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -853,3 +853,25 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md index a256a3c48ca3f..f898aefd6df05 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md @@ -863,7 +863,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : mailboxRestoreArtifactsBulkAdditionRequest +BODYPARAMETER ``: mailboxRestoreArtifactsBulkAdditionRequest [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -910,7 +910,7 @@ Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding Exchange restore session in a bulk operation. [Mailboxes ]: The list of email addresses that are added to the corresponding Exchange restore session in a bulk operation. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -921,7 +921,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -937,7 +937,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -972,7 +972,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -983,7 +983,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONTIMEPERIOD : timePeriod +PROTECTIONTIMEPERIOD ``: timePeriod [(Any) ]: This indicates any property can be added to this object. [EndDateTime ]: The date time of the end of the time period. [StartDateTime ]: The date time of the start of the time period. @@ -993,3 +993,25 @@ PROTECTIONTIMEPERIOD : timePeriod - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest) - [](https://learn.microsoft.com/graph/api/exchangerestoresession-post-mailboxrestoreartifactsbulkadditionrequests?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxInclusionRule.md index 65605d48836b6..0e46c4a126075 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxInclusionRule.md @@ -541,7 +541,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : mailboxProtectionRule +BODYPARAMETER ``: mailboxProtectionRule [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -578,7 +578,7 @@ Read-only. [MailboxExpression ]: Contains a mailbox expression. For examples, see mailboxExpression examples. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -589,7 +589,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -605,7 +605,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -620,3 +620,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoremailboxinclusionrule) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnit.md index 603b2183555be..54bbe7c392179 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnit.md @@ -588,7 +588,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : mailboxProtectionUnit +BODYPARAMETER ``: mailboxProtectionUnit [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -632,7 +632,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [DirectoryObjectId ]: The ID of the directory object. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -643,7 +643,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -659,7 +659,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -674,3 +674,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoremailboxprotectionunit) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md index 11926390c5a40..8ae5e81c7b708 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md @@ -561,7 +561,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : mailboxProtectionUnitsBulkAdditionJob +BODYPARAMETER ``: mailboxProtectionUnitsBulkAdditionJob [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -598,7 +598,7 @@ Read-only. [DirectoryObjectIds ]: The list of Exchange directoryObjectIds to add to the Exchange protection policy. [Mailboxes ]: The list of Exchange email addresses to add to the Exchange protection policy. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -609,7 +609,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -625,7 +625,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -640,3 +640,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md index 62a8c515249e5..13ec4c348900d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -539,7 +539,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : oneDriveForBusinessBrowseSession +BODYPARAMETER ``: oneDriveForBusinessBrowseSession [(Any) ]: This indicates any property can be added to this object. [BackupSizeInBytes ]: The size of the backup in bytes. [CreatedDateTime ]: The date and time when the browse session was created. @@ -568,7 +568,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [DirectoryObjectId ]: Id of the backed-up OneDrive. -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -589,3 +589,25 @@ ERROR : publicError - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessbrowsesession) - [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-onedriveforbusinessbrowsesessions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md index 4111c52489430..586fc42a76fe7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md @@ -637,7 +637,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : oneDriveForBusinessProtectionPolicy +BODYPARAMETER ``: oneDriveForBusinessProtectionPolicy [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -724,7 +724,7 @@ Read-only. [DirectoryObjectIds ]: The list of OneDrive directoryObjectIds to add to the OneDrive protection policy. [Drives ]: The list of email addresses to add to the OneDrive protection policy. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -850,7 +850,7 @@ Read-only. [DirectoryObjectIds ]: The list of OneDrive directoryObjectIds to add to the OneDrive protection policy. [Drives ]: The list of email addresses to add to the OneDrive protection policy. -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -861,7 +861,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONPOLICYARTIFACTCOUNT : protectionPolicyArtifactCount +PROTECTIONPOLICYARTIFACTCOUNT ``: protectionPolicyArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: [Failed ]: @@ -877,3 +877,25 @@ RETENTIONSETTINGS : Contains the retention se - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy) - [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-onedriveforbusinessprotectionpolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md index f804359b8a3ff..4b836d792028d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md @@ -639,7 +639,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : oneDriveForBusinessRestoreSession +BODYPARAMETER ``: oneDriveForBusinessRestoreSession [(Any) ]: This indicates any property can be added to this object. [CompletedDateTime ]: The time of completion of the restore session. [CreatedBy ]: identitySet @@ -752,7 +752,7 @@ It's the path of the folder where all the artifacts are restored within a granul Read-only. [DirectoryObjectId ]: Id of the drive in which artifact is present. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -868,7 +868,7 @@ Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding OneDrive for work or school restore session in a bulk operation. [Drives ]: The list of email addresses that are added to the corresponding OneDrive for work or school restore session in a bulk operation. -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -899,7 +899,7 @@ It's the path of the folder where all the artifacts are restored within a granul Read-only. [DirectoryObjectId ]: Id of the drive in which artifact is present. -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -910,7 +910,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -RESTORESESSIONARTIFACTCOUNT : restoreSessionArtifactCount +RESTORESESSIONARTIFACTCOUNT ``: restoreSessionArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: The number of artifacts whose restoration completed. [Failed ]: The number of artifacts whose restoration failed. @@ -922,3 +922,25 @@ RESTORESESSIONARTIFACTCOUNT : restor - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresession) - [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-onedriveforbusinessrestoresessions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md index 846b6a71eac9a..39242bb8baf4e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md @@ -660,7 +660,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : driveRestoreArtifact +BODYPARAMETER ``: driveRestoreArtifact [(Any) ]: This indicates any property can be added to this object. [CompletionDateTime ]: The time when restoration of restore artifact is completed. [DestinationType ]: destinationType @@ -720,7 +720,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [RestoredSiteId ]: The new site identifier if destinationType is new, and the input site ID if the destinationType is inPlace. -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -736,7 +736,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -771,7 +771,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -RESTOREPOINT : restorePoint +RESTOREPOINT ``: restorePoint [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -825,3 +825,25 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md index 049e6b764c392..dcaa2c5fb9040 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md @@ -863,7 +863,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : driveRestoreArtifactsBulkAdditionRequest +BODYPARAMETER ``: driveRestoreArtifactsBulkAdditionRequest [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -910,7 +910,7 @@ Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding OneDrive for work or school restore session in a bulk operation. [Drives ]: The list of email addresses that are added to the corresponding OneDrive for work or school restore session in a bulk operation. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -921,7 +921,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -937,7 +937,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -972,7 +972,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -983,7 +983,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONTIMEPERIOD : timePeriod +PROTECTIONTIMEPERIOD ``: timePeriod [(Any) ]: This indicates any property can be added to this object. [EndDateTime ]: The date time of the end of the time period. [StartDateTime ]: The date time of the start of the time period. @@ -993,3 +993,25 @@ PROTECTIONTIMEPERIOD : timePeriod - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest) - [](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-post-driverestoreartifactsbulkadditionrequests?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md index e3f4f21a9ecdc..336bc1f2ed95b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -741,7 +741,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : granularDriveRestoreArtifact +BODYPARAMETER ``: granularDriveRestoreArtifact [(Any) ]: This indicates any property can be added to this object. [BrowseSessionId ]: The unique identifier of the browseSession [CompletionDateTime ]: Date time when the artifact's restoration completes. @@ -757,7 +757,7 @@ It's the path of the folder where all the artifacts are restored within a granul Read-only. [DirectoryObjectId ]: Id of the drive in which artifact is present. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -796,3 +796,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifact) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestorePoint.md index 3d65b7b5a3ab9..1873633982532 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestorePoint.md @@ -451,7 +451,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : restorePoint +BODYPARAMETER ``: restorePoint [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -501,7 +501,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Status ]: protectionUnitStatus [Tags ]: restorePointTags -PROTECTIONUNIT : protectionUnitBase +PROTECTIONUNIT ``: protectionUnitBase [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -548,3 +548,25 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestorepoint) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md index bb31d1926bf12..2ce5e438e5d1e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md @@ -562,7 +562,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : protectionPolicyBase +BODYPARAMETER ``: protectionPolicyBase [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -592,7 +592,7 @@ For example, in the access reviews decisions API, this property might record the [Period ]: The period of time to retain the protected data for a single Microsoft 365 service. [Status ]: protectionPolicyStatus -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -603,7 +603,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -614,7 +614,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONPOLICYARTIFACTCOUNT : protectionPolicyArtifactCount +PROTECTIONPOLICYARTIFACTCOUNT ``: protectionPolicyArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: [Failed ]: @@ -629,3 +629,25 @@ RETENTIONSETTINGS : Contains the retention se ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreprotectionpolicy) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreServiceApp.md index f1a88b75b83a1..05bfa4f3b858b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreServiceApp.md @@ -495,14 +495,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -APPLICATION : identity +APPLICATION ``: identity [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: The display name of the identity.For drive items, the display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user don't show up as changed when using delta. [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. -BODYPARAMETER : serviceApp +BODYPARAMETER ``: serviceApp [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -522,7 +522,7 @@ For example, in the access reviews decisions API, this property might record the [RegistrationDateTime ]: Timestamp of the creation of the service app entity. [Status ]: serviceAppStatus -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -538,3 +538,25 @@ For example, in the access reviews decisions API, this property might record the - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreserviceapp) - [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-serviceapps?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSession.md index c4af1818d2559..113e36c52c74d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSession.md @@ -562,7 +562,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : restoreSessionBase +BODYPARAMETER ``: restoreSessionBase [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -604,7 +604,7 @@ For example, in the access reviews decisions API, this property might record the [Total ]: The number of artifacts present in the restore session. [Status ]: restoreSessionStatus -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -615,7 +615,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -631,7 +631,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -642,7 +642,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -RESTORESESSIONARTIFACTCOUNT : restoreSessionArtifactCount +RESTORESESSIONARTIFACTCOUNT ``: restoreSessionArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: The number of artifacts whose restoration completed. [Failed ]: The number of artifacts whose restoration failed. @@ -653,3 +653,25 @@ RESTORESESSIONARTIFACTCOUNT : restor ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md index 21fb54f25e9cf..217290dd5bfba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -539,7 +539,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : sharePointBrowseSession +BODYPARAMETER ``: sharePointBrowseSession [(Any) ]: This indicates any property can be added to this object. [BackupSizeInBytes ]: The size of the backup in bytes. [CreatedDateTime ]: The date and time when the browse session was created. @@ -568,7 +568,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [SiteId ]: Id of the backed-up SharePoint site. -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -589,3 +589,25 @@ ERROR : publicError - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointbrowsesession) - [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-sharepointbrowsesessions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md index a133d8e31aed2..9ef6c080c2892 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md @@ -636,7 +636,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : sharePointProtectionPolicy +BODYPARAMETER ``: sharePointProtectionPolicy [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -723,7 +723,7 @@ Read-only. [SiteIds ]: The list of SharePoint site IDs to add to the SharePoint protection policy. [SiteWebUrls ]: The list of SharePoint site URLs to add to the SharePoint protection policy. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -734,7 +734,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -745,7 +745,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONPOLICYARTIFACTCOUNT : protectionPolicyArtifactCount +PROTECTIONPOLICYARTIFACTCOUNT ``: protectionPolicyArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: [Failed ]: @@ -876,3 +876,25 @@ Read-only. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointprotectionpolicy) - [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-sharepointprotectionpolicies?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSession.md index f95d4b28c7599..44a424d97d987 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSession.md @@ -639,7 +639,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : sharePointRestoreSession +BODYPARAMETER ``: sharePointRestoreSession [(Any) ]: This indicates any property can be added to this object. [CompletedDateTime ]: The time of completion of the restore session. [CreatedBy ]: identitySet @@ -752,7 +752,7 @@ Read-only. [SiteIds ]: The list of SharePoint site IDs that are added to the corresponding SharePoint restore session in a bulk operation. [SiteWebUrls ]: The list of SharePoint site URLs that are added to the corresponding SharePoint restore session in a bulk operation. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -763,7 +763,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -794,7 +794,7 @@ It's the path of the folder where all the artifacts are restored within a granul Read-only. [SiteId ]: Id of the site in which artifact is present. -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -805,7 +805,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -RESTORESESSIONARTIFACTCOUNT : restoreSessionArtifactCount +RESTORESESSIONARTIFACTCOUNT ``: restoreSessionArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: The number of artifacts whose restoration completed. [Failed ]: The number of artifacts whose restoration failed. @@ -922,3 +922,25 @@ Read-only. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresession) - [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-sharepointrestoresessions?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md index c5468259b661a..8322e053ab7f1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -740,7 +740,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : granularSiteRestoreArtifact +BODYPARAMETER ``: granularSiteRestoreArtifact [(Any) ]: This indicates any property can be added to this object. [BrowseSessionId ]: The unique identifier of the browseSession [CompletionDateTime ]: Date time when the artifact's restoration completes. @@ -756,7 +756,7 @@ It's the path of the folder where all the artifacts are restored within a granul Read-only. [SiteId ]: Id of the site in which artifact is present. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -795,3 +795,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifact) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md index 27e2a0d8e7fc4..f56525bc2be2e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md @@ -660,7 +660,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : siteRestoreArtifact +BODYPARAMETER ``: siteRestoreArtifact [(Any) ]: This indicates any property can be added to this object. [CompletionDateTime ]: The time when restoration of restore artifact is completed. [DestinationType ]: destinationType @@ -720,7 +720,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [RestoredSiteId ]: The new site identifier if the value of the destinationType property is new, and the existing site ID if the value is inPlace. -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -736,7 +736,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -771,7 +771,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -RESTOREPOINT : restorePoint +RESTOREPOINT ``: restorePoint [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -825,3 +825,25 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md index e568c0fbac333..df38dc51b694a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md @@ -861,7 +861,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : siteRestoreArtifactsBulkAdditionRequest +BODYPARAMETER ``: siteRestoreArtifactsBulkAdditionRequest [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -908,7 +908,7 @@ Read-only. [SiteIds ]: The list of SharePoint site IDs that are added to the corresponding SharePoint restore session in a bulk operation. [SiteWebUrls ]: The list of SharePoint site URLs that are added to the corresponding SharePoint restore session in a bulk operation. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -919,7 +919,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -935,7 +935,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -970,7 +970,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -981,7 +981,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONTIMEPERIOD : timePeriod +PROTECTIONTIMEPERIOD ``: timePeriod [(Any) ]: This indicates any property can be added to this object. [EndDateTime ]: The date time of the end of the time period. [StartDateTime ]: The date time of the start of the time period. @@ -991,3 +991,25 @@ PROTECTIONTIMEPERIOD : timePeriod - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest) - [](https://learn.microsoft.com/graph/api/sharepointrestoresession-post-siterestoreartifactsbulkadditionrequests?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteInclusionRule.md index 5c9dd760fb7a8..e875c29248660 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteInclusionRule.md @@ -540,7 +540,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : siteProtectionRule +BODYPARAMETER ``: siteProtectionRule [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -577,7 +577,7 @@ Read-only. [SiteExpression ]: Contains a site expression. For examples, see siteExpression example. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -588,7 +588,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -604,7 +604,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -619,3 +619,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresiteinclusionrule) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnit.md index dbe842bed2bf7..5d5f5c24eba48 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnit.md @@ -587,7 +587,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : siteProtectionUnit +BODYPARAMETER ``: siteProtectionUnit [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -631,7 +631,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [SiteId ]: Unique identifier of the SharePoint site. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -642,7 +642,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -658,7 +658,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -673,3 +673,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresiteprotectionunit) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md index 39a69515a853c..4a63c6a9b2013 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md @@ -561,7 +561,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : siteProtectionUnitsBulkAdditionJob +BODYPARAMETER ``: siteProtectionUnitsBulkAdditionJob [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -598,7 +598,7 @@ Read-only. [SiteIds ]: The list of SharePoint site IDs to add to the SharePoint protection policy. [SiteWebUrls ]: The list of SharePoint site URLs to add to the SharePoint protection policy. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -609,7 +609,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -625,7 +625,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -640,3 +640,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestore.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestore.md index 62d8687c6c521..c4a52978cfd29 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestore.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestore.md @@ -326,3 +326,25 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestore) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreBrowseSession.md index ed939fbc19527..a92209ae197a7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreBrowseSession.md @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -423,3 +423,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestorebrowsesession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveInclusionRule.md index a964680741810..065023e016135 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveInclusionRule.md @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -423,3 +423,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoredriveinclusionrule) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnit.md index f54691bb718f6..d653be6d29051 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnit.md @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -423,3 +423,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoredriveprotectionunit) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md index e154828b31b57..6c306ca818d14 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md @@ -386,7 +386,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -425,3 +425,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeProtectionPolicy.md index a6b951592a034..f2bf828230651 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeProtectionPolicy.md @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -423,3 +423,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangeprotectionpolicy) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSession.md index 1ef4bba99b479..d8538b5fb4280 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSession.md @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -423,3 +423,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index a862b4b432ca4..10134ad0e34cf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md @@ -407,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -446,3 +446,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md index 738a8a46cafd2..50c17ba0e8228 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md @@ -407,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -446,3 +446,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md index 864d7a32b1a3e..08553eb3347a7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md @@ -407,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -447,3 +447,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest) - [](https://learn.microsoft.com/graph/api/mailboxrestoreartifactsbulkadditionrequest-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxInclusionRule.md index f8035aa9cf327..6768fe9ac7cfb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxInclusionRule.md @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -423,3 +423,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoremailboxinclusionrule) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnit.md index 4a6fd753d3f19..797db7f2bcd2d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnit.md @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -423,3 +423,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoremailboxprotectionunit) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md index b500929718ff0..e72584996b7ac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md @@ -386,7 +386,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -425,3 +425,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md index 5f551fbc948f7..b73e8e886ce47 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -385,7 +385,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -424,3 +424,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessbrowsesession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md index 2cd9a3c4573f6..b18b13e50e75d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md @@ -386,7 +386,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -425,3 +425,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md index 6a7581058ba1b..3c0d52d504d00 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md @@ -386,7 +386,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -425,3 +425,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md index d30bb5b6638b4..13a625dc3ac28 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md @@ -407,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -446,3 +446,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md index 6c70e8a249754..e39d8fd9ffdfa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md @@ -407,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -447,3 +447,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest) - [](https://learn.microsoft.com/graph/api/driverestoreartifactsbulkadditionrequest-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md index 2a7434bae1359..cfdf2002e912e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -407,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -446,3 +446,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifact) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestorePoint.md index 5d08dd1f72d19..a79c9d1e20837 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestorePoint.md @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -423,3 +423,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestorepoint) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreProtectionPolicy.md index 307e5368e142d..10f461763aae9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreProtectionPolicy.md @@ -392,7 +392,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -432,3 +432,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreprotectionpolicy) - [](https://learn.microsoft.com/graph/api/protectionpolicybase-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreServiceApp.md index a6bc8e98e7f37..0a03537f1d808 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreServiceApp.md @@ -386,7 +386,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -426,3 +426,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreserviceapp) - [](https://learn.microsoft.com/graph/api/backuprestoreroot-delete-serviceapps?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSession.md index cfd8a29dda8f5..551d6267be8e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSession.md @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -424,3 +424,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresession) - [](https://learn.microsoft.com/graph/api/restoresessionbase-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointBrowseSession.md index 8629c35891e09..f36b095e9c20f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -423,3 +423,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointbrowsesession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointProtectionPolicy.md index d3a1cd43abbcc..31aa9443a2288 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointProtectionPolicy.md @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -423,3 +423,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointprotectionpolicy) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSession.md index 037e5c3e2a010..a18585a149a72 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSession.md @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -423,3 +423,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md index a25794b896016..5abe52b3e6b56 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -407,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -446,3 +446,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifact) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md index 7eb9e060992eb..70db79da73b3e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md @@ -407,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -446,3 +446,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md index 1d1943e02bbea..f07a0c84f6348 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md @@ -407,7 +407,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -447,3 +447,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest) - [](https://learn.microsoft.com/graph/api/siterestoreartifactsbulkadditionrequest-delete?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteInclusionRule.md index 6788735db6a16..9b9040ea6cb91 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteInclusionRule.md @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -423,3 +423,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresiteinclusionrule) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnit.md index faa6701d32b2b..5f7990ab70efb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnit.md @@ -384,7 +384,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -423,3 +423,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresiteprotectionunit) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md index 268d82ee61820..b8f62673126ac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md @@ -386,7 +386,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -425,3 +425,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md index 47cce9d79d122..fed2661811115 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md @@ -452,12 +452,12 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -ARTIFACTQUERY : artifactQuery +ARTIFACTQUERY ``: artifactQuery [(Any) ]: This indicates any property can be added to this object. [ArtifactType ]: restorableArtifact [QueryExpression ]: Specifies criteria to retrieve artifacts. -BODYPARAMETER : . +BODYPARAMETER ``: . [(Any) ]: This indicates any property can be added to this object. [ArtifactQuery ]: artifactQuery [(Any) ]: This indicates any property can be added to this object. @@ -471,7 +471,7 @@ BODYPARAMETER ]: restorePointPreference [Tags ]: restorePointTags -PROTECTIONTIMEPERIOD : timePeriod +PROTECTIONTIMEPERIOD ``: timePeriod [(Any) ]: This indicates any property can be added to this object. [EndDateTime ]: The date time of the end of the time period. [StartDateTime ]: The date time of the start of the time period. @@ -481,3 +481,25 @@ PROTECTIONTIMEPERIOD : timePeriod - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/search-mgsolutionbackuprestorepoint) - [](https://learn.microsoft.com/graph/api/restorepoint-search?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Stop-MgSolutionBackupRestoreProtectionUnitOffboard.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Stop-MgSolutionBackupRestoreProtectionUnitOffboard.md index df27dabe8f25a..a02b2458adf7a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Stop-MgSolutionBackupRestoreProtectionUnitOffboard.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Stop-MgSolutionBackupRestoreProtectionUnitOffboard.md @@ -342,7 +342,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -382,3 +382,25 @@ INPUTOBJECT : Identity Parameter - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/stop-mgsolutionbackuprestoreprotectionunitoffboard) - [](https://learn.microsoft.com/graph/api/protectionunitbase-canceloffboard?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md index 4815bd331eb33..0a44ee0f2c3d0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md @@ -915,7 +915,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : backupRestoreRoot +BODYPARAMETER ``: backupRestoreRoot [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -2267,7 +2267,7 @@ For example, in the access reviews decisions API, this property might record the [RegistrationDateTime ]: Timestamp of the creation of the service app entity. [Status ]: serviceAppStatus -SERVICESTATUS : serviceStatus +SERVICESTATUS ``: serviceStatus [(Any) ]: This indicates any property can be added to this object. [BackupServiceConsumer ]: backupServiceConsumer [DisableReason ]: disableReason @@ -2631,3 +2631,25 @@ Read-only. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestore) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md index 962a808eed726..0a1339780912c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md @@ -659,7 +659,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : browseSessionBase +BODYPARAMETER ``: browseSessionBase [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -687,7 +687,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [RestorePointId ]: [Status ]: browseSessionStatus -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -703,7 +703,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -742,3 +742,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestorebrowsesession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveInclusionRule.md index 7f973d009d47c..984346ef25268 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveInclusionRule.md @@ -689,7 +689,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : driveProtectionRule +BODYPARAMETER ``: driveProtectionRule [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -726,7 +726,7 @@ Read-only. [DriveExpression ]: Contains a drive expression. For examples, see driveExpression examples. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -737,7 +737,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -753,7 +753,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -788,7 +788,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -803,3 +803,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoredriveinclusionrule) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnit.md index b137a6a3da2a2..cbc9cbb778b12 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnit.md @@ -750,7 +750,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : driveProtectionUnit +BODYPARAMETER ``: driveProtectionUnit [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -794,7 +794,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [DirectoryObjectId ]: ID of the directory object. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -805,7 +805,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -821,7 +821,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -856,7 +856,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -871,3 +871,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoredriveprotectionunit) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md index 9734b352686e2..327707bf91085 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md @@ -719,7 +719,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : driveProtectionUnitsBulkAdditionJob +BODYPARAMETER ``: driveProtectionUnitsBulkAdditionJob [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -756,7 +756,7 @@ Read-only. [DirectoryObjectIds ]: The list of OneDrive directoryObjectIds to add to the OneDrive protection policy. [Drives ]: The list of email addresses to add to the OneDrive protection policy. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -767,7 +767,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -783,7 +783,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -818,7 +818,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -833,3 +833,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md index 50fb009321ac4..2c9c34026a811 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md @@ -812,7 +812,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : exchangeProtectionPolicy +BODYPARAMETER ``: exchangeProtectionPolicy [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -899,7 +899,7 @@ Read-only. [DirectoryObjectIds ]: The list of Exchange directoryObjectIds to add to the Exchange protection policy. [Mailboxes ]: The list of Exchange email addresses to add to the Exchange protection policy. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -910,7 +910,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -945,7 +945,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1071,7 +1071,7 @@ Read-only. [DirectoryObjectIds ]: The list of Exchange directoryObjectIds to add to the Exchange protection policy. [Mailboxes ]: The list of Exchange email addresses to add to the Exchange protection policy. -PROTECTIONPOLICYARTIFACTCOUNT : protectionPolicyArtifactCount +PROTECTIONPOLICYARTIFACTCOUNT ``: protectionPolicyArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: [Failed ]: @@ -1087,3 +1087,25 @@ RETENTIONSETTINGS : Contains the retention se - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangeprotectionpolicy) - [](https://learn.microsoft.com/graph/api/exchangeprotectionpolicy-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md index f7a46a7479348..96956bb220305 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md @@ -810,7 +810,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : exchangeRestoreSession +BODYPARAMETER ``: exchangeRestoreSession [(Any) ]: This indicates any property can be added to this object. [CompletedDateTime ]: The time of completion of the restore session. [CreatedBy ]: identitySet @@ -924,7 +924,7 @@ Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding Exchange restore session in a bulk operation. [Mailboxes ]: The list of email addresses that are added to the corresponding Exchange restore session in a bulk operation. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -935,7 +935,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -1014,7 +1014,7 @@ Read-only. Don't use. [SearchResponseId ]: . -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -1049,7 +1049,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1166,7 +1166,7 @@ Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding Exchange restore session in a bulk operation. [Mailboxes ]: The list of email addresses that are added to the corresponding Exchange restore session in a bulk operation. -RESTORESESSIONARTIFACTCOUNT : restoreSessionArtifactCount +RESTORESESSIONARTIFACTCOUNT ``: restoreSessionArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: The number of artifacts whose restoration completed. [Failed ]: The number of artifacts whose restoration failed. @@ -1178,3 +1178,25 @@ RESTORESESSIONARTIFACTCOUNT : restor - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresession) - [](https://learn.microsoft.com/graph/api/exchangerestoresession-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index 3bb8cf4478f8d..4ac03bd051143 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md @@ -773,7 +773,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : granularMailboxRestoreArtifact +BODYPARAMETER ``: granularMailboxRestoreArtifact [(Any) ]: This indicates any property can be added to this object. [RestoredFolderId ]: The new restored folder identifier for the user. [RestoredItemCount ]: The number of items that are being restored in the folder. @@ -837,7 +837,7 @@ Read-only. Don't use. [SearchResponseId ]: . -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -853,7 +853,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -888,7 +888,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -RESTOREPOINT : restorePoint +RESTOREPOINT ``: restorePoint [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -942,3 +942,25 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md index 0f3ba4554f53d..63517af227346 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md @@ -716,7 +716,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : mailboxRestoreArtifact +BODYPARAMETER ``: mailboxRestoreArtifact [(Any) ]: This indicates any property can be added to this object. [CompletionDateTime ]: The time when restoration of restore artifact is completed. [DestinationType ]: destinationType @@ -777,7 +777,7 @@ Read-only. [RestoredFolderId ]: The new restored folder identifier for the user. [RestoredItemCount ]: The number of items that are being restored in the folder. -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -793,7 +793,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -828,7 +828,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -RESTOREPOINT : restorePoint +RESTOREPOINT ``: restorePoint [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -882,3 +882,25 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md index 93a25a50c687f..53789896985fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md @@ -888,7 +888,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : mailboxRestoreArtifactsBulkAdditionRequest +BODYPARAMETER ``: mailboxRestoreArtifactsBulkAdditionRequest [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -935,7 +935,7 @@ Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding Exchange restore session in a bulk operation. [Mailboxes ]: The list of email addresses that are added to the corresponding Exchange restore session in a bulk operation. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -946,7 +946,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -962,7 +962,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -997,7 +997,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1008,7 +1008,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONTIMEPERIOD : timePeriod +PROTECTIONTIMEPERIOD ``: timePeriod [(Any) ]: This indicates any property can be added to this object. [EndDateTime ]: The date time of the end of the time period. [StartDateTime ]: The date time of the start of the time period. @@ -1017,3 +1017,25 @@ PROTECTIONTIMEPERIOD : timePeriod ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxInclusionRule.md index 90b4af9867473..4e3707187b9e8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxInclusionRule.md @@ -689,7 +689,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : mailboxProtectionRule +BODYPARAMETER ``: mailboxProtectionRule [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -726,7 +726,7 @@ Read-only. [MailboxExpression ]: Contains a mailbox expression. For examples, see mailboxExpression examples. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -737,7 +737,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -753,7 +753,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -788,7 +788,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -803,3 +803,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoremailboxinclusionrule) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnit.md index c3a76ea51f80d..5997a8d87f171 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnit.md @@ -750,7 +750,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : mailboxProtectionUnit +BODYPARAMETER ``: mailboxProtectionUnit [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -794,7 +794,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [DirectoryObjectId ]: The ID of the directory object. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -805,7 +805,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -821,7 +821,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -856,7 +856,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -871,3 +871,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoremailboxprotectionunit) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md index be50d677e7901..d31c9f2ecddfa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md @@ -719,7 +719,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : mailboxProtectionUnitsBulkAdditionJob +BODYPARAMETER ``: mailboxProtectionUnitsBulkAdditionJob [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -756,7 +756,7 @@ Read-only. [DirectoryObjectIds ]: The list of Exchange directoryObjectIds to add to the Exchange protection policy. [Mailboxes ]: The list of Exchange email addresses to add to the Exchange protection policy. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -767,7 +767,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -783,7 +783,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -818,7 +818,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -833,3 +833,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md index c53b3279e5d74..60de3ae86837e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -689,7 +689,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : oneDriveForBusinessBrowseSession +BODYPARAMETER ``: oneDriveForBusinessBrowseSession [(Any) ]: This indicates any property can be added to this object. [BackupSizeInBytes ]: The size of the backup in bytes. [CreatedDateTime ]: The date and time when the browse session was created. @@ -718,7 +718,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [DirectoryObjectId ]: Id of the backed-up OneDrive. -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -734,7 +734,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -773,3 +773,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessbrowsesession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md index 1d0b45d9c88d8..4e6f7a66b54c9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md @@ -816,7 +816,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : oneDriveForBusinessProtectionPolicy +BODYPARAMETER ``: oneDriveForBusinessProtectionPolicy [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -903,7 +903,7 @@ Read-only. [DirectoryObjectIds ]: The list of OneDrive directoryObjectIds to add to the OneDrive protection policy. [Drives ]: The list of email addresses to add to the OneDrive protection policy. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1029,7 +1029,7 @@ Read-only. [DirectoryObjectIds ]: The list of OneDrive directoryObjectIds to add to the OneDrive protection policy. [Drives ]: The list of email addresses to add to the OneDrive protection policy. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -1064,7 +1064,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1075,7 +1075,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONPOLICYARTIFACTCOUNT : protectionPolicyArtifactCount +PROTECTIONPOLICYARTIFACTCOUNT ``: protectionPolicyArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: [Failed ]: @@ -1091,3 +1091,25 @@ RETENTIONSETTINGS : Contains the retention se - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy) - [](https://learn.microsoft.com/graph/api/onedriveforbusinessprotectionpolicy-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md index a711eab35dfc9..c7148d364a183 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md @@ -814,7 +814,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : oneDriveForBusinessRestoreSession +BODYPARAMETER ``: oneDriveForBusinessRestoreSession [(Any) ]: This indicates any property can be added to this object. [CompletedDateTime ]: The time of completion of the restore session. [CreatedBy ]: identitySet @@ -927,7 +927,7 @@ It's the path of the folder where all the artifacts are restored within a granul Read-only. [DirectoryObjectId ]: Id of the drive in which artifact is present. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1043,7 +1043,7 @@ Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding OneDrive for work or school restore session in a bulk operation. [Drives ]: The list of email addresses that are added to the corresponding OneDrive for work or school restore session in a bulk operation. -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -1074,7 +1074,7 @@ It's the path of the folder where all the artifacts are restored within a granul Read-only. [DirectoryObjectId ]: Id of the drive in which artifact is present. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -1109,7 +1109,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1120,7 +1120,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -RESTORESESSIONARTIFACTCOUNT : restoreSessionArtifactCount +RESTORESESSIONARTIFACTCOUNT ``: restoreSessionArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: The number of artifacts whose restoration completed. [Failed ]: The number of artifacts whose restoration failed. @@ -1132,3 +1132,25 @@ RESTORESESSIONARTIFACTCOUNT : restor - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresession) - [](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md index 9b66ce6caee6c..2fbcff13bcc77 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md @@ -688,7 +688,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : driveRestoreArtifact +BODYPARAMETER ``: driveRestoreArtifact [(Any) ]: This indicates any property can be added to this object. [CompletionDateTime ]: The time when restoration of restore artifact is completed. [DestinationType ]: destinationType @@ -748,7 +748,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [RestoredSiteId ]: The new site identifier if destinationType is new, and the input site ID if the destinationType is inPlace. -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -764,7 +764,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -799,7 +799,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -RESTOREPOINT : restorePoint +RESTOREPOINT ``: restorePoint [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -853,3 +853,25 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md index 64e758e5da491..e69315eaf311b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md @@ -888,7 +888,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : driveRestoreArtifactsBulkAdditionRequest +BODYPARAMETER ``: driveRestoreArtifactsBulkAdditionRequest [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -935,7 +935,7 @@ Read-only. [DirectoryObjectIds ]: The list of directory object IDs that are added to the corresponding OneDrive for work or school restore session in a bulk operation. [Drives ]: The list of email addresses that are added to the corresponding OneDrive for work or school restore session in a bulk operation. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -946,7 +946,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -962,7 +962,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -997,7 +997,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1008,7 +1008,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONTIMEPERIOD : timePeriod +PROTECTIONTIMEPERIOD ``: timePeriod [(Any) ]: This indicates any property can be added to this object. [EndDateTime ]: The date time of the end of the time period. [StartDateTime ]: The date time of the start of the time period. @@ -1017,3 +1017,25 @@ PROTECTIONTIMEPERIOD : timePeriod ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md index 98a6ca4fca4da..3affb78e6e5e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -769,7 +769,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : granularDriveRestoreArtifact +BODYPARAMETER ``: granularDriveRestoreArtifact [(Any) ]: This indicates any property can be added to this object. [BrowseSessionId ]: The unique identifier of the browseSession [CompletionDateTime ]: Date time when the artifact's restoration completes. @@ -785,7 +785,7 @@ It's the path of the folder where all the artifacts are restored within a granul Read-only. [DirectoryObjectId ]: Id of the drive in which artifact is present. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -824,3 +824,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifact) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestorePoint.md index b7823e302e880..54d855c930157 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestorePoint.md @@ -575,7 +575,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : restorePoint +BODYPARAMETER ``: restorePoint [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -625,7 +625,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Status ]: protectionUnitStatus [Tags ]: restorePointTags -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -660,7 +660,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -PROTECTIONUNIT : protectionUnitBase +PROTECTIONUNIT ``: protectionUnitBase [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -707,3 +707,25 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestorepoint) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md index 4f1385d9530f8..6d15d9b662a3e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md @@ -720,7 +720,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : protectionPolicyBase +BODYPARAMETER ``: protectionPolicyBase [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -750,7 +750,7 @@ For example, in the access reviews decisions API, this property might record the [Period ]: The period of time to retain the protected data for a single Microsoft 365 service. [Status ]: protectionPolicyStatus -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -761,7 +761,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -796,7 +796,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -807,7 +807,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONPOLICYARTIFACTCOUNT : protectionPolicyArtifactCount +PROTECTIONPOLICYARTIFACTCOUNT ``: protectionPolicyArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: [Failed ]: @@ -822,3 +822,25 @@ RETENTIONSETTINGS : Contains the retention se ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreprotectionpolicy) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreServiceApp.md index 5a4a74ef026e1..6cd1d240a8eb8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreServiceApp.md @@ -631,14 +631,14 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -APPLICATION : identity +APPLICATION ``: identity [(Any) ]: This indicates any property can be added to this object. [DisplayName ]: The display name of the identity.For drive items, the display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user don't show up as changed when using delta. [Id ]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. -BODYPARAMETER : serviceApp +BODYPARAMETER ``: serviceApp [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -658,7 +658,7 @@ For example, in the access reviews decisions API, this property might record the [RegistrationDateTime ]: Timestamp of the creation of the service app entity. [Status ]: serviceAppStatus -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -693,7 +693,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -708,3 +708,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreserviceapp) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSession.md index 1fe666c420024..dc5842823df6c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSession.md @@ -720,7 +720,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : restoreSessionBase +BODYPARAMETER ``: restoreSessionBase [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -762,7 +762,7 @@ For example, in the access reviews decisions API, this property might record the [Total ]: The number of artifacts present in the restore session. [Status ]: restoreSessionStatus -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -773,7 +773,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -789,7 +789,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -824,7 +824,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -835,7 +835,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -RESTORESESSIONARTIFACTCOUNT : restoreSessionArtifactCount +RESTORESESSIONARTIFACTCOUNT ``: restoreSessionArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: The number of artifacts whose restoration completed. [Failed ]: The number of artifacts whose restoration failed. @@ -846,3 +846,25 @@ RESTORESESSIONARTIFACTCOUNT : restor ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md index 8d50e92398e96..390b94b2ed290 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -686,7 +686,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : sharePointBrowseSession +BODYPARAMETER ``: sharePointBrowseSession [(Any) ]: This indicates any property can be added to this object. [BackupSizeInBytes ]: The size of the backup in bytes. [CreatedDateTime ]: The date and time when the browse session was created. @@ -715,7 +715,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [SiteId ]: Id of the backed-up SharePoint site. -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -731,7 +731,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -770,3 +770,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointbrowsesession) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md index 5480445241907..bcd7700db444c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md @@ -812,7 +812,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : sharePointProtectionPolicy +BODYPARAMETER ``: sharePointProtectionPolicy [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -899,7 +899,7 @@ Read-only. [SiteIds ]: The list of SharePoint site IDs to add to the SharePoint protection policy. [SiteWebUrls ]: The list of SharePoint site URLs to add to the SharePoint protection policy. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -910,7 +910,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -945,7 +945,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -956,7 +956,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONPOLICYARTIFACTCOUNT : protectionPolicyArtifactCount +PROTECTIONPOLICYARTIFACTCOUNT ``: protectionPolicyArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: [Failed ]: @@ -1087,3 +1087,25 @@ Read-only. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointprotectionpolicy) - [](https://learn.microsoft.com/graph/api/sharepointprotectionpolicy-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSession.md index ba91bfb63393d..63f085303b7d1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSession.md @@ -810,7 +810,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : sharePointRestoreSession +BODYPARAMETER ``: sharePointRestoreSession [(Any) ]: This indicates any property can be added to this object. [CompletedDateTime ]: The time of completion of the restore session. [CreatedBy ]: identitySet @@ -923,7 +923,7 @@ Read-only. [SiteIds ]: The list of SharePoint site IDs that are added to the corresponding SharePoint restore session in a bulk operation. [SiteWebUrls ]: The list of SharePoint site URLs that are added to the corresponding SharePoint restore session in a bulk operation. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -934,7 +934,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -965,7 +965,7 @@ It's the path of the folder where all the artifacts are restored within a granul Read-only. [SiteId ]: Id of the site in which artifact is present. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -1000,7 +1000,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1011,7 +1011,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -RESTORESESSIONARTIFACTCOUNT : restoreSessionArtifactCount +RESTORESESSIONARTIFACTCOUNT ``: restoreSessionArtifactCount [(Any) ]: This indicates any property can be added to this object. [Completed ]: The number of artifacts whose restoration completed. [Failed ]: The number of artifacts whose restoration failed. @@ -1128,3 +1128,25 @@ Read-only. - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresession) - [](https://learn.microsoft.com/graph/api/sharepointrestoresession-update?view=graph-rest-1.0) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md index 6297c8fa8c958..3b1d869ec5b18 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -769,7 +769,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : granularSiteRestoreArtifact +BODYPARAMETER ``: granularSiteRestoreArtifact [(Any) ]: This indicates any property can be added to this object. [BrowseSessionId ]: The unique identifier of the browseSession [CompletionDateTime ]: Date time when the artifact's restoration completes. @@ -785,7 +785,7 @@ It's the path of the folder where all the artifacts are restored within a granul Read-only. [SiteId ]: Id of the site in which artifact is present. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -824,3 +824,25 @@ INPUTOBJECT : Identity Parameter ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifact) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md index 4a0a7aefa8c56..5dd6f0f9ce1a7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md @@ -688,7 +688,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : siteRestoreArtifact +BODYPARAMETER ``: siteRestoreArtifact [(Any) ]: This indicates any property can be added to this object. [CompletionDateTime ]: The time when restoration of restore artifact is completed. [DestinationType ]: destinationType @@ -748,7 +748,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [RestoredSiteId ]: The new site identifier if the value of the destinationType property is new, and the existing site ID if the value is inPlace. -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -764,7 +764,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -799,7 +799,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -RESTOREPOINT : restorePoint +RESTOREPOINT ``: restorePoint [(Any) ]: This indicates any property can be added to this object. [Id ]: The unique identifier for an entity. Read-only. @@ -853,3 +853,25 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md index bbeaa6afb349b..aab32f4b65987 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md @@ -887,7 +887,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : siteRestoreArtifactsBulkAdditionRequest +BODYPARAMETER ``: siteRestoreArtifactsBulkAdditionRequest [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -934,7 +934,7 @@ Read-only. [SiteIds ]: The list of SharePoint site IDs that are added to the corresponding SharePoint restore session in a bulk operation. [SiteWebUrls ]: The list of SharePoint site URLs that are added to the corresponding SharePoint restore session in a bulk operation. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -945,7 +945,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -961,7 +961,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -996,7 +996,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -1007,7 +1007,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -PROTECTIONTIMEPERIOD : timePeriod +PROTECTIONTIMEPERIOD ``: timePeriod [(Any) ]: This indicates any property can be added to this object. [EndDateTime ]: The date time of the end of the time period. [StartDateTime ]: The date time of the start of the time period. @@ -1016,3 +1016,25 @@ PROTECTIONTIMEPERIOD : timePeriod ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteInclusionRule.md index 6916096714076..376423f4e8d38 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteInclusionRule.md @@ -689,7 +689,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : siteProtectionRule +BODYPARAMETER ``: siteProtectionRule [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -726,7 +726,7 @@ Read-only. [SiteExpression ]: Contains a site expression. For examples, see siteExpression example. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -737,7 +737,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -753,7 +753,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -788,7 +788,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -803,3 +803,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresiteinclusionrule) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnit.md index d735881f522f7..34eef53de0387 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnit.md @@ -750,7 +750,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : siteProtectionUnit +BODYPARAMETER ``: siteProtectionUnit [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -794,7 +794,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. [SiteId ]: Unique identifier of the SharePoint site. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -805,7 +805,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -821,7 +821,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -856,7 +856,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -871,3 +871,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresiteprotectionunit) + + + + + + + + + + + + + + + + + + + + + + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md index b5976b6e30b69..820b13dc649d6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md @@ -719,7 +719,7 @@ COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. -BODYPARAMETER : siteProtectionUnitsBulkAdditionJob +BODYPARAMETER ``: siteProtectionUnitsBulkAdditionJob [(Any) ]: This indicates any property can be added to this object. [CreatedBy ]: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -756,7 +756,7 @@ Read-only. [SiteIds ]: The list of SharePoint site IDs to add to the SharePoint protection policy. [SiteWebUrls ]: The list of SharePoint site URLs to add to the SharePoint protection policy. -CREATEDBY : identitySet +CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -767,7 +767,7 @@ For example, in the access reviews decisions API, this property might record the [Device ]: identity [User ]: identity -ERROR : publicError +ERROR ``: publicError [(Any) ]: This indicates any property can be added to this object. [Code ]: Represents the error code. [Details ]: Details of the error. @@ -783,7 +783,7 @@ ERROR : publicError [Message ]: A non-localized message for the developer. [Target ]: The target of the error. -INPUTOBJECT : Identity Parameter +INPUTOBJECT ``: Identity Parameter [BrowseSessionBaseId ]: The unique identifier of browseSessionBase [DriveProtectionRuleId ]: The unique identifier of driveProtectionRule [DriveProtectionUnitId ]: The unique identifier of driveProtectionUnit @@ -818,7 +818,7 @@ INPUTOBJECT : Identity Parameter [SiteRestoreArtifactId ]: The unique identifier of siteRestoreArtifact [SiteRestoreArtifactsBulkAdditionRequestId ]: The unique identifier of siteRestoreArtifactsBulkAdditionRequest -LASTMODIFIEDBY : identitySet +LASTMODIFIEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. [Application ]: identity [(Any) ]: This indicates any property can be added to this object. @@ -833,3 +833,25 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS - [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob) + + + + + + + + + + + + + + + + + + + + + + From a3146a7617d78b8978c865b5f0f94b670c69e7c5 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:50:17 +0000 Subject: [PATCH 12/16] Inserted permissions Table --- .../Get-MgSolutionBackupRestoreBrowseSessionCount.md | 8 ++++++++ ...RestoreExchangeProtectionPolicyMailboxInclusionRule.md | 8 ++++++++ ...reExchangeProtectionPolicyMailboxInclusionRuleCount.md | 8 ++++++++ ...lutionBackupRestoreOneDriveForBusinessBrowseSession.md | 8 ++++++++ ...nBackupRestoreOneDriveForBusinessBrowseSessionCount.md | 8 ++++++++ ...eDriveForBusinessProtectionPolicyDriveInclusionRule.md | 8 ++++++++ ...eForBusinessProtectionPolicyDriveInclusionRuleCount.md | 8 ++++++++ ...nessRestoreSessionGranularDriveRestoreArtifactCount.md | 8 ++++++++ .../Get-MgSolutionBackupRestorePointCount.md | 8 ++++++++ .../Get-MgSolutionBackupRestoreSessionCount.md | 8 ++++++++ .../Get-MgSolutionBackupRestoreSharePointBrowseSession.md | 8 ++++++++ ...MgSolutionBackupRestoreSharePointBrowseSessionCount.md | 8 ++++++++ ...pRestoreSharePointProtectionPolicySiteInclusionRule.md | 8 ++++++++ ...oreSharePointProtectionPolicySiteInclusionRuleCount.md | 8 ++++++++ ...PointRestoreSessionGranularSiteRestoreArtifactCount.md | 8 ++++++++ ...lutionBackupRestoreOneDriveForBusinessBrowseSession.md | 8 ++++++++ .../New-MgSolutionBackupRestoreSharePointBrowseSession.md | 8 ++++++++ .../Search-MgSolutionBackupRestorePoint.md | 8 ++++++++ 18 files changed, 144 insertions(+) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md index d600b4b82906e..5883c8fbcaa1e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md @@ -35,6 +35,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BackupRestore-Restore.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BackupRestore-Restore.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md index eddb358cde56e..235af671f15c3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md @@ -66,6 +66,14 @@ An inclusion rule indicates that a protection policy should contain protection u The initial status of a protection rule upon creation is active. After the rule is applied, the state is either completed or completedWithErrors. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md index 0a0283237eaef..2ee54ad192229 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md index 2ba3e84481f0b..f5cd57150fd91 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Read the properties and relationships of oneDriveForBusinessBrowseSession object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BackupRestore-Restore.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BackupRestore-Restore.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md index 27ded2af217c3..f7b21f71f500d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md @@ -35,6 +35,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BackupRestore-Restore.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BackupRestore-Restore.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md index 82335e38b5a65..1812d3a9d3db5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md @@ -67,6 +67,14 @@ An inclusion rule indicates that a protection policy should contain protection u The initial status of a protection rule upon creation is active. After the rule is applied, the state is either completed or completedWithErrors. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md index 043cbbb254703..db4409541513f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md index e83783e8ec861..ffd7856546fe1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BackupRestore-Restore.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BackupRestore-Restore.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md index 0578da429f7cd..4ccd9e0d86c46 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md @@ -35,6 +35,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BackupRestore-Search.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BackupRestore-Search.Read.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md index 628af544471ee..569f6ede4d573 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md @@ -35,6 +35,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BackupRestore-Restore.Read.All, BackupRestore-Restore.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BackupRestore-Restore.Read.All, BackupRestore-Restore.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md index 0ef059e2596a4..5ad9c650a799a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -57,6 +57,14 @@ This cmdlet has the following aliases, Read the properties and relationships of sharePointBrowseSession object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BackupRestore-Restore.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BackupRestore-Restore.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md index b5281a9e49099..4dfd32c3e2a47 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md @@ -35,6 +35,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BackupRestore-Restore.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BackupRestore-Restore.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md index dbd5db7bc510d..5e27858f97543 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md @@ -66,6 +66,14 @@ An inclusion rule indicates that a protection policy should contain protection u The initial status of a protection rule upon creation is active. After the rule is applied, the state is either completed or completedWithErrors. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md index 077cc667ef59a..6b73a61ef4824 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md index 5b3950ee3217f..691b42d98b394 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md @@ -46,6 +46,14 @@ This cmdlet has the following aliases, Get the number of the resource +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BackupRestore-Restore.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BackupRestore-Restore.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md index 13ec4c348900d..0cc7e7bbc1da0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -48,6 +48,14 @@ This cmdlet has the following aliases, Create a new oneDriveForBusinessBrowseSession object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BackupRestore-Restore.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BackupRestore-Restore.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md index 217290dd5bfba..f0a223fbf70df 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -48,6 +48,14 @@ This cmdlet has the following aliases, Create a new sharePointBrowseSession object. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BackupRestore-Restore.ReadWrite.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BackupRestore-Restore.ReadWrite.All, | + ## EXAMPLES ### EXAMPLE 1 diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md index fed2661811115..d8ffe91b186e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md @@ -47,6 +47,14 @@ This cmdlet has the following aliases, Search for the restorePoint objects associated with a protectionUnit. +**Permissions** + +| Permission type | Permissions (from least to most privileged) | +| --------------- | ------------------------------------------ | +| Delegated (work or school account) | BackupRestore-Search.Read.All, | +| Delegated (personal Microsoft account) | Not supported | +| Application | BackupRestore-Search.Read.All, | + ## EXAMPLES ### EXAMPLE 1 From f388d42b11e531716e379dba194a49cf1947af4a Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:51:04 +0000 Subject: [PATCH 13/16] Updated metadata parameters --- .../Enable-MgSolutionBackupRestore.md | 3 +++ .../Get-MgSolutionBackupRestore.md | 3 +++ .../Get-MgSolutionBackupRestoreBrowseSession.md | 3 +++ .../Get-MgSolutionBackupRestoreBrowseSessionCount.md | 3 +++ .../Get-MgSolutionBackupRestoreDriveInclusionRule.md | 3 +++ .../Get-MgSolutionBackupRestoreDriveInclusionRuleCount.md | 3 +++ .../Get-MgSolutionBackupRestoreDriveProtectionUnit.md | 3 +++ ...gSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md | 3 +++ ...tionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.md | 3 +++ .../Get-MgSolutionBackupRestoreDriveProtectionUnitCount.md | 3 +++ .../Get-MgSolutionBackupRestoreExchangeProtectionPolicy.md | 3 +++ ...Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount.md | 3 +++ ...ackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md | 3 +++ ...RestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md | 3 +++ ...ckupRestoreExchangeProtectionPolicyMailboxProtectionUnit.md | 3 +++ ...angeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.md | 3 +++ ...rotectionPolicyMailboxProtectionUnitBulkAdditionJobCount.md | 3 +++ ...estoreExchangeProtectionPolicyMailboxProtectionUnitCount.md | 3 +++ .../Get-MgSolutionBackupRestoreExchangeRestoreSession.md | 3 +++ .../Get-MgSolutionBackupRestoreExchangeRestoreSessionCount.md | 3 +++ ...toreExchangeRestoreSessionGranularMailboxRestoreArtifact.md | 3 +++ ...xchangeRestoreSessionGranularMailboxRestoreArtifactCount.md | 3 +++ ...RestoreSessionGranularMailboxRestoreArtifactRestorePoint.md | 3 +++ ...ackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md | 3 +++ ...eRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md | 3 +++ ...oreSessionMailboxRestoreArtifactBulkAdditionRequestCount.md | 3 +++ ...RestoreExchangeRestoreSessionMailboxRestoreArtifactCount.md | 3 +++ ...ExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.md | 3 +++ .../Get-MgSolutionBackupRestoreMailboxInclusionRule.md | 3 +++ .../Get-MgSolutionBackupRestoreMailboxInclusionRuleCount.md | 3 +++ .../Get-MgSolutionBackupRestoreMailboxProtectionUnit.md | 3 +++ ...olutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md | 3 +++ ...onBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.md | 3 +++ .../Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md | 3 +++ ...-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md | 3 +++ ...lutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md | 3 +++ ...SolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md | 3 +++ ...ionBackupRestoreOneDriveForBusinessProtectionPolicyCount.md | 3 +++ ...oreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md | 3 +++ ...eDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md | 3 +++ ...reOneDriveForBusinessProtectionPolicyDriveProtectionUnit.md | 3 +++ ...sinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.md | 3 +++ ...sProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.md | 3 +++ ...DriveForBusinessProtectionPolicyDriveProtectionUnitCount.md | 3 +++ ...MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md | 3 +++ ...utionBackupRestoreOneDriveForBusinessRestoreSessionCount.md | 3 +++ ...oreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md | 3 +++ ...essRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md | 3 +++ ...storeSessionDriveRestoreArtifactBulkAdditionRequestCount.md | 3 +++ ...eDriveForBusinessRestoreSessionDriveRestoreArtifactCount.md | 3 +++ ...orBusinessRestoreSessionDriveRestoreArtifactRestorePoint.md | 3 +++ ...iveForBusinessRestoreSessionGranularDriveRestoreArtifact.md | 3 +++ ...rBusinessRestoreSessionGranularDriveRestoreArtifactCount.md | 3 +++ .../Get-MgSolutionBackupRestorePoint.md | 3 +++ .../Get-MgSolutionBackupRestorePointCount.md | 3 +++ .../Get-MgSolutionBackupRestorePointProtectionUnit.md | 3 +++ .../Get-MgSolutionBackupRestoreProtectionPolicy.md | 3 +++ .../Get-MgSolutionBackupRestoreProtectionPolicyCount.md | 3 +++ .../Get-MgSolutionBackupRestoreProtectionUnit.md | 3 +++ ...SolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.md | 3 +++ ...lutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.md | 3 +++ ...gSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.md | 3 +++ .../Get-MgSolutionBackupRestoreProtectionUnitCount.md | 3 +++ ...ionBackupRestoreProtectionUnitCountAsDriveProtectionUnit.md | 3 +++ ...nBackupRestoreProtectionUnitCountAsMailboxProtectionUnit.md | 3 +++ ...tionBackupRestoreProtectionUnitCountAsSiteProtectionUnit.md | 3 +++ .../Get-MgSolutionBackupRestoreServiceApp.md | 3 +++ .../Get-MgSolutionBackupRestoreServiceAppCount.md | 3 +++ .../Get-MgSolutionBackupRestoreSession.md | 3 +++ .../Get-MgSolutionBackupRestoreSessionCount.md | 3 +++ .../Get-MgSolutionBackupRestoreSharePointBrowseSession.md | 3 +++ .../Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md | 3 +++ .../Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md | 3 +++ ...t-MgSolutionBackupRestoreSharePointProtectionPolicyCount.md | 3 +++ ...BackupRestoreSharePointProtectionPolicySiteInclusionRule.md | 3 +++ ...pRestoreSharePointProtectionPolicySiteInclusionRuleCount.md | 3 +++ ...ackupRestoreSharePointProtectionPolicySiteProtectionUnit.md | 3 +++ ...rePointProtectionPolicySiteProtectionUnitBulkAdditionJob.md | 3 +++ ...ntProtectionPolicySiteProtectionUnitBulkAdditionJobCount.md | 3 +++ ...RestoreSharePointProtectionPolicySiteProtectionUnitCount.md | 3 +++ .../Get-MgSolutionBackupRestoreSharePointRestoreSession.md | 3 +++ ...Get-MgSolutionBackupRestoreSharePointRestoreSessionCount.md | 3 +++ ...storeSharePointRestoreSessionGranularSiteRestoreArtifact.md | 3 +++ ...SharePointRestoreSessionGranularSiteRestoreArtifactCount.md | 3 +++ ...BackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md | 3 +++ ...ointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md | 3 +++ ...estoreSessionSiteRestoreArtifactBulkAdditionRequestCount.md | 3 +++ ...pRestoreSharePointRestoreSessionSiteRestoreArtifactCount.md | 3 +++ ...eSharePointRestoreSessionSiteRestoreArtifactRestorePoint.md | 3 +++ .../Get-MgSolutionBackupRestoreSiteInclusionRule.md | 3 +++ .../Get-MgSolutionBackupRestoreSiteInclusionRuleCount.md | 3 +++ .../Get-MgSolutionBackupRestoreSiteProtectionUnit.md | 3 +++ ...MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md | 3 +++ ...utionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.md | 3 +++ .../Get-MgSolutionBackupRestoreSiteProtectionUnitCount.md | 3 +++ .../Initialize-MgSolutionBackupRestoreProtectionPolicy.md | 3 +++ .../Initialize-MgSolutionBackupRestoreServiceApp.md | 3 +++ .../Initialize-MgSolutionBackupRestoreSession.md | 3 +++ .../Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md | 3 +++ ...Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md | 3 +++ .../Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md | 3 +++ .../Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md | 3 +++ .../New-MgSolutionBackupRestoreBrowseSession.md | 3 +++ .../New-MgSolutionBackupRestoreDriveInclusionRule.md | 3 +++ .../New-MgSolutionBackupRestoreDriveProtectionUnit.md | 3 +++ ...gSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md | 3 +++ .../New-MgSolutionBackupRestoreExchangeProtectionPolicy.md | 3 +++ .../New-MgSolutionBackupRestoreExchangeRestoreSession.md | 3 +++ ...toreExchangeRestoreSessionGranularMailboxRestoreArtifact.md | 3 +++ ...ackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md | 3 +++ ...eRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md | 3 +++ .../New-MgSolutionBackupRestoreMailboxInclusionRule.md | 3 +++ .../New-MgSolutionBackupRestoreMailboxProtectionUnit.md | 3 +++ ...olutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md | 3 +++ ...-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md | 3 +++ ...SolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md | 3 +++ ...MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md | 3 +++ ...oreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md | 3 +++ ...essRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md | 3 +++ ...iveForBusinessRestoreSessionGranularDriveRestoreArtifact.md | 3 +++ .../New-MgSolutionBackupRestorePoint.md | 3 +++ .../New-MgSolutionBackupRestoreProtectionPolicy.md | 3 +++ .../New-MgSolutionBackupRestoreServiceApp.md | 3 +++ .../New-MgSolutionBackupRestoreSession.md | 3 +++ .../New-MgSolutionBackupRestoreSharePointBrowseSession.md | 3 +++ .../New-MgSolutionBackupRestoreSharePointProtectionPolicy.md | 3 +++ .../New-MgSolutionBackupRestoreSharePointRestoreSession.md | 3 +++ ...storeSharePointRestoreSessionGranularSiteRestoreArtifact.md | 3 +++ ...BackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md | 3 +++ ...ointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md | 3 +++ .../New-MgSolutionBackupRestoreSiteInclusionRule.md | 3 +++ .../New-MgSolutionBackupRestoreSiteProtectionUnit.md | 3 +++ ...MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md | 3 +++ .../Remove-MgSolutionBackupRestore.md | 3 +++ .../Remove-MgSolutionBackupRestoreBrowseSession.md | 3 +++ .../Remove-MgSolutionBackupRestoreDriveInclusionRule.md | 3 +++ .../Remove-MgSolutionBackupRestoreDriveProtectionUnit.md | 3 +++ ...gSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md | 3 +++ .../Remove-MgSolutionBackupRestoreExchangeProtectionPolicy.md | 3 +++ .../Remove-MgSolutionBackupRestoreExchangeRestoreSession.md | 3 +++ ...toreExchangeRestoreSessionGranularMailboxRestoreArtifact.md | 3 +++ ...ackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md | 3 +++ ...eRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md | 3 +++ .../Remove-MgSolutionBackupRestoreMailboxInclusionRule.md | 3 +++ .../Remove-MgSolutionBackupRestoreMailboxProtectionUnit.md | 3 +++ ...olutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md | 3 +++ ...-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md | 3 +++ ...SolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md | 3 +++ ...MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md | 3 +++ ...oreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md | 3 +++ ...essRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md | 3 +++ ...iveForBusinessRestoreSessionGranularDriveRestoreArtifact.md | 3 +++ .../Remove-MgSolutionBackupRestorePoint.md | 3 +++ .../Remove-MgSolutionBackupRestoreProtectionPolicy.md | 3 +++ .../Remove-MgSolutionBackupRestoreServiceApp.md | 3 +++ .../Remove-MgSolutionBackupRestoreSession.md | 3 +++ .../Remove-MgSolutionBackupRestoreSharePointBrowseSession.md | 3 +++ ...Remove-MgSolutionBackupRestoreSharePointProtectionPolicy.md | 3 +++ .../Remove-MgSolutionBackupRestoreSharePointRestoreSession.md | 3 +++ ...storeSharePointRestoreSessionGranularSiteRestoreArtifact.md | 3 +++ ...BackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md | 3 +++ ...ointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md | 3 +++ .../Remove-MgSolutionBackupRestoreSiteInclusionRule.md | 3 +++ .../Remove-MgSolutionBackupRestoreSiteProtectionUnit.md | 3 +++ ...MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md | 3 +++ .../Search-MgSolutionBackupRestorePoint.md | 3 +++ .../Stop-MgSolutionBackupRestoreProtectionUnitOffboard.md | 3 +++ .../Update-MgSolutionBackupRestore.md | 3 +++ .../Update-MgSolutionBackupRestoreBrowseSession.md | 3 +++ .../Update-MgSolutionBackupRestoreDriveInclusionRule.md | 3 +++ .../Update-MgSolutionBackupRestoreDriveProtectionUnit.md | 3 +++ ...gSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md | 3 +++ .../Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md | 3 +++ .../Update-MgSolutionBackupRestoreExchangeRestoreSession.md | 3 +++ ...toreExchangeRestoreSessionGranularMailboxRestoreArtifact.md | 3 +++ ...ackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md | 3 +++ ...eRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md | 3 +++ .../Update-MgSolutionBackupRestoreMailboxInclusionRule.md | 3 +++ .../Update-MgSolutionBackupRestoreMailboxProtectionUnit.md | 3 +++ ...olutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md | 3 +++ ...-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md | 3 +++ ...SolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md | 3 +++ ...MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md | 3 +++ ...oreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md | 3 +++ ...essRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md | 3 +++ ...iveForBusinessRestoreSessionGranularDriveRestoreArtifact.md | 3 +++ .../Update-MgSolutionBackupRestorePoint.md | 3 +++ .../Update-MgSolutionBackupRestoreProtectionPolicy.md | 3 +++ .../Update-MgSolutionBackupRestoreServiceApp.md | 3 +++ .../Update-MgSolutionBackupRestoreSession.md | 3 +++ .../Update-MgSolutionBackupRestoreSharePointBrowseSession.md | 3 +++ ...Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md | 3 +++ .../Update-MgSolutionBackupRestoreSharePointRestoreSession.md | 3 +++ ...storeSharePointRestoreSessionGranularSiteRestoreArtifact.md | 3 +++ ...BackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md | 3 +++ ...ointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md | 3 +++ .../Update-MgSolutionBackupRestoreSiteInclusionRule.md | 3 +++ .../Update-MgSolutionBackupRestoreSiteProtectionUnit.md | 3 +++ ...MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md | 3 +++ 199 files changed, 597 insertions(+) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md index 9703a4b779287..00b54ec230f4b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md @@ -15,6 +15,9 @@ title: Enable-MgSolutionBackupRestore Enable the Microsoft 365 Backup Storage service for a tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Enable-MgBetaSolutionBackupRestore](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Enable-MgBetaSolutionBackupRestore?view=graph-powershell-beta) + ## SYNTAX ### EnableExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestore.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestore.md index 4e82239231050..20db77cb8c32c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestore.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestore.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestore Get the serviceStatus of the Microsoft 365 Backup Storage service in a tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestore](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestore?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSession.md index b91a91fd82cde..bf9d1c6b3e212 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSession.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreBrowseSession The list of browse sessions in the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreBrowseSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreBrowseSession?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md index 5883c8fbcaa1e..3b0912fea5d53 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreBrowseSessionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreBrowseSessionCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreBrowseSessionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRule.md index 67560b43ab8ae..b98c3381a3dcb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRule.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreDriveInclusionRule The list of drive inclusion rules applied to the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreDriveInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreDriveInclusionRule?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRuleCount.md index 88fddb7860018..7437debc7067f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRuleCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreDriveInclusionRuleCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreDriveInclusionRuleCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreDriveInclusionRuleCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnit.md index 14630aa72d5ca..3b6b52aa8457d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnit.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreDriveProtectionUnit The list of drive protection units in the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreDriveProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreDriveProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md index 6dd79ff383bed..7093af770024b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob Get driveProtectionUnitsBulkAdditionJobs from solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.md index f4c3fed83932b..031f2dacda5bd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitCount.md index ff89ab29035e8..0fc32e0cda63c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreDriveProtectionUnitCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreDriveProtectionUnitCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreDriveProtectionUnitCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicy.md index ec65d628e26b5..3cfff1b2fcb7f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicy.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreExchangeProtectionPolicy The list of Exchange protection policies in the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicy?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount.md index cf9f47c18cbaa..19f958af45196 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md index 235af671f15c3..437027fcad9ca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md @@ -19,6 +19,9 @@ An inclusion rule indicates that a protection policy should contain protection u The initial status of a protection rule upon creation is active. After the rule is applied, the state is either completed or completedWithErrors. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md index 2ee54ad192229..9a8bdc5f2df45 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCo Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit.md index 96088fcd2a297..0515a20a43617 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit The protection units (mailboxes) that are protected under the Exchange protection policy. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.md index 51bcdd21b8d2e..6d9f41b3e1a9e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitB Get a mailboxProtectionUnitsBulkAdditionJob object by the ID associated with an exchangeProtectionPolicy. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount.md index 1db3acff21967..8954fa8b81138 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitB Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount.md index a3dfe0e0b01c2..78a7ac94e0d5b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitC Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSession.md index e1b65cae89d94..94599671cf723 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSession.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreExchangeRestoreSession The list of Exchange restore sessions available in the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeRestoreSession?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionCount.md index a4c0e645948a3..fd056901072a8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreExchangeRestoreSessionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index 6f3cb46104067..eba4186c440a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreAr Get granularMailboxRestoreArtifacts from solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount.md index 23865098204eb..16145a1a58022 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreAr Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint.md index 8813d0f85f65d..85de11b5a53db 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreAr Represents the date and time when an artifact is protected by a protectionPolicy and can be restored. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md index 4d8699a46012e..d0a81c9a5071c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact A collection of restore points and destination details that can be used to restore Exchange mailboxes. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md index b57d038b9984b..77eebe8bd83a3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBu Get a mailboxRestoreArtifactsBulkAdditionRequest object by its id, associated with an exchangeRestoreSession. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount.md index 7804ef4014039..12c0fd6205153 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBu Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount.md index c4246c20563d9..daa2cbbdc6f75 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCo Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.md index 0227308540245..eaca6c000a402 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRe Represents the date and time when an artifact is protected by a protectionPolicy and can be restored. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRule.md index f233ba3642c46..0f4dfa1639bfb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRule.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreMailboxInclusionRule The list of mailbox inclusion rules applied to the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreMailboxInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreMailboxInclusionRule?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRuleCount.md index 89e985ae2be00..c22b0765bb576 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRuleCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreMailboxInclusionRuleCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreMailboxInclusionRuleCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreMailboxInclusionRuleCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnit.md index 790889675bd46..e3faaa864547b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnit.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreMailboxProtectionUnit The list of mailbox protection units in the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreMailboxProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreMailboxProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md index 6376b2330f482..0b2aa6173800e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob Get mailboxProtectionUnitsBulkAdditionJobs from solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.md index 5d8c5a92f6d35..e1797155c23a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md index 5af2c1e14d8b5..ccb3ae68a3d0c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreMailboxProtectionUnitCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreMailboxProtectionUnitCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreMailboxProtectionUnitCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md index f5cd57150fd91..0f97435f4ac3e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession Read the properties and relationships of oneDriveForBusinessBrowseSession object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessBrowseSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessBrowseSession?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md index f7b21f71f500d..ed23d8505d55e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md index 3182e425270dd..7b93ddd31b8da 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy The list of OneDrive for Business protection policies in the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicy?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount.md index da8303c53a3a0..4d32976dde72f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md index 1812d3a9d3db5..75333ceec584c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md @@ -19,6 +19,9 @@ An inclusion rule indicates that a protection policy should contain protection u The initial status of a protection rule upon creation is active. After the rule is applied, the state is either completed or completedWithErrors. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md index db4409541513f..f5c7a9f4f267e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclus Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit.md index 5ffaca5c973fc..ec1cbdb88e440 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtec Contains the protection units associated with a OneDrive for Business protection policy. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.md index 8a12a9d2d3f01..1fe8547f88503 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtec Get a driveProtectionUnitsBulkAdditionJob object by the ID associated with a oneDriveForBusinessProtectionPolicy. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.md index 99704576762c4..90d73e5d8f888 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtec Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount.md index 0f45d63749816..7112b7a8c1783 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtec Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md index 1594f694ae2f0..918284cafce7b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession The list of OneDrive for Business restore sessions available in the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSession?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount.md index c1b3b74e93ab4..c335b0d128498 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md index 66d5904910967..5a444005f5b21 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreA A collection of restore points and destination details that can be used to restore a OneDrive for work or school drive. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md index 50c775e7de9f3..433207969af26 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreA Get a driveRestoreArtifactsBulkAdditionRequest object by its id, associated with a oneDriveForBusinessRestoreSession. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount.md index 66a5755f33dfd..c19963c65f8d1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreA Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount.md index 5cfd18c3d3921..a76b4b850572e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreA Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.md index 115dd4c11fdcf..070c28a2cf9fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreA Represents the date and time when an artifact is protected by a protectionPolicy and can be restored. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md index e5dfc0a12cd32..f1e9c30faec06 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDrive A collection of browse session ID and item key details that can be used to restore OneDrive for work or school files and folders. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md index ffd7856546fe1..b5e6ad840ad36 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDrive Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePoint.md index 5ca905074873e..a66cac741c285 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePoint.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestorePoint List of restore points in the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestorePoint](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestorePoint?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md index 4ccd9e0d86c46..637d1270f8730 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestorePointCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestorePointCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestorePointCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointProtectionUnit.md index b999b9e9ddc9b..7be7dff9344f5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointProtectionUnit.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestorePointProtectionUnit The site, drive, or mailbox units that are protected under a protection policy. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestorePointProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestorePointProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicy.md index 85eb3c9f85894..57589cb8147ae 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicy.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreProtectionPolicy List of protection policies in the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreProtectionPolicy?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicyCount.md index eb4f7b00c878f..e8fae3e46f203 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicyCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreProtectionPolicyCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreProtectionPolicyCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreProtectionPolicyCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnit.md index a16f38361fcb1..61fc3fe0ab236 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnit.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreProtectionUnit Read the properties and relationships of a protectionUnitBase object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.md index 47672338fc788..7a9de4b6f5502 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit Get a list of the driveProtectionUnit objects that are associated with a oneDriveForBusinessProtectionPolicy. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.md index dc5929c73b09c..dc37462b6df1e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit Get a list of mailboxProtectionUnit objects. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.md index 1b2607c252536..279674f3deb16 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit Get a list of the siteProtectionUnit objects that are associated with a sharePointProtectionPolicy. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCount.md index 7920fe0362194..346994902b94f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreProtectionUnitCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreProtectionUnitCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreProtectionUnitCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit.md index 0dea6b4d7e893..fbf70a936b297 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit.md index cd3a0a2c0248c..fa7c98765be26 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit.md index c1ec612d7ecdb..14c8935b9c100 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceApp.md index ac06f2d799f45..f26a9296f7fb4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceApp.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreServiceApp Read the properties and relationships of a serviceApp object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreServiceApp](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreServiceApp?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceAppCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceAppCount.md index 1d0c278a4996f..7952699e16ef4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceAppCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceAppCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreServiceAppCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreServiceAppCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreServiceAppCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSession.md index 75922db978fd7..ecf1cbb0e4586 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSession.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSession Get the properties of a restoreSession object by ID. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSession?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md index 569f6ede4d573..3c9e27b606313 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSessionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSessionCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSessionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md index 5ad9c650a799a..ba3dd6bc31c85 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSharePointBrowseSession Read the properties and relationships of sharePointBrowseSession object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointBrowseSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointBrowseSession?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md index 4dfd32c3e2a47..20a49de78310d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSharePointBrowseSessionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointBrowseSessionCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointBrowseSessionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md index ae0739f1bb6d0..53b40e89f9183 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSharePointProtectionPolicy The list of SharePoint protection policies in the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicy?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount.md index 5a8484d31dba9..6de8f9982bada 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicyCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicyCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md index 5e27858f97543..b199ec7ef014c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md @@ -19,6 +19,9 @@ An inclusion rule indicates that a protection policy should contain protection u The initial status of a protection rule upon creation is active. After the rule is applied, the state is either completed or completedWithErrors. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md index 6b73a61ef4824..e5306f23dc308 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCou Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit.md index 7edcebf049227..35e672c1fc4ab 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit The protection units (sites) that are protected under the site protection policy. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob.md index 4cc9beed0dc3d..baf462b1128b7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBu Get a siteProtectionUnitsBulkAdditionJob object by the ID associated with a sharePointProtectionPolicy. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount.md index bd747dbb7d436..be92a33c5dc39 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBu Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount.md index 0b1cf017b4852..acb0ab8a1f468 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCo Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSession.md index 553ecb11acf47..0458d096d9c2d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSession.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSharePointRestoreSession The list of SharePoint restore sessions available in the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointRestoreSession?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionCount.md index 1ab61cba05064..751e7d63dd210 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSharePointRestoreSessionCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md index 4377d55b9c677..1b9fb88cabc10 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArt A collection of browse session ID and item key details that can be used to restore SharePoint files and folders. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md index 691b42d98b394..59a81e1903674 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArt Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md index 9b3225401d134..58f27773ed981 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact A collection of restore points and destination details that can be used to restore SharePoint sites. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md index 1bc3a6e6fca64..f179bf25f25cf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBul Get a siteRestoreArtifactsBulkAdditionRequest object by its id, associated with a sharePointRestoreSession. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount.md index b6779d4e802f7..204835ee7fab1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBul Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount.md index 6d155489937d7..b93aca330e1a9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCou Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint.md index fdd9e6e80d15b..90bd9aff2a41c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRes Represents the date and time when an artifact is protected by a protectionPolicy and can be restored. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRule.md index e3d25ae88621b..08fb94db66c67 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRule.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSiteInclusionRule The list of site inclusion rules applied to the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSiteInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSiteInclusionRule?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRuleCount.md index 31ce0ce2c34a8..fbc75d68f4cb3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRuleCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSiteInclusionRuleCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSiteInclusionRuleCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSiteInclusionRuleCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnit.md index 4b0b9a371cd7c..f10c5c18d884f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnit.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSiteProtectionUnit The list of site protection units in the tenant. +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSiteProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSiteProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md index 7f2f6c0e3cbfd..a18f1efc86f27 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob Get siteProtectionUnitsBulkAdditionJobs from solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob?view=graph-powershell-beta) + ## SYNTAX ### List (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.md index 059ec988f02d4..c56f3e8fab393 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitCount.md index 078790ba1cfff..00687ab1d2670 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitCount.md @@ -15,6 +15,9 @@ title: Get-MgSolutionBackupRestoreSiteProtectionUnitCount Get the number of the resource +> [!NOTE] +> To view the beta release of this cmdlet, view [Get-MgBetaSolutionBackupRestoreSiteProtectionUnitCount](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Get-MgBetaSolutionBackupRestoreSiteProtectionUnitCount?view=graph-powershell-beta) + ## SYNTAX ### Get (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreProtectionPolicy.md index def62329d7cd4..3ad018ad13c08 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreProtectionPolicy.md @@ -17,6 +17,9 @@ Activate a protectionPolicyBase. Currently, only one active backup policy per underlying service is supported (that is, one for OneDrive accounts, one for SharePoint sites, and one for Exchange Online users). You can add or remove artifacts (sites or user accounts) to or from each active policy. +> [!NOTE] +> To view the beta release of this cmdlet, view [Initialize-MgBetaSolutionBackupRestoreProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Initialize-MgBetaSolutionBackupRestoreProtectionPolicy?view=graph-powershell-beta) + ## SYNTAX ### Activate (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md index 079498a2bd1e8..4713474c3075e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md @@ -15,6 +15,9 @@ title: Initialize-MgSolutionBackupRestoreServiceApp Activate a serviceApp. +> [!NOTE] +> To view the beta release of this cmdlet, view [Initialize-MgBetaSolutionBackupRestoreServiceApp](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Initialize-MgBetaSolutionBackupRestoreServiceApp?view=graph-powershell-beta) + ## SYNTAX ### ActivateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreSession.md index e0a2bbb0b46e2..d539eb06ffb11 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreSession.md @@ -16,6 +16,9 @@ title: Initialize-MgSolutionBackupRestoreSession Activate a draft restoreSessionBase object. The following points apply to restoring a protection unit: +> [!NOTE] +> To view the beta release of this cmdlet, view [Initialize-MgBetaSolutionBackupRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Initialize-MgBetaSolutionBackupRestoreSession?view=graph-powershell-beta) + ## SYNTAX ### Activate (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md index 519c2042b472d..b3ecdcc28b676 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md @@ -15,6 +15,9 @@ title: Invoke-MgBrowseSolutionBackupRestoreBrowseSession Invoke action browse +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaBrowseSolutionBackupRestoreBrowseSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Invoke-MgBetaBrowseSolutionBackupRestoreBrowseSession?view=graph-powershell-beta) + ## SYNTAX ### BrowseExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md index 393ad8fe3bb9e..987d8ab8daa7d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md @@ -19,6 +19,9 @@ Any backups taken before deactivation are retained according to the retention po You can restore data using previous restore points even after deactivation. To reactivate a deactivated policy, use the activate API. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaDeactivateSolutionBackupRestoreProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Invoke-MgBetaDeactivateSolutionBackupRestoreProtectionPolicy?view=graph-powershell-beta) + ## SYNTAX ### Deactivate (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md index ab3197c5dbc16..827afceb839c8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md @@ -15,6 +15,9 @@ title: Invoke-MgDeactivateSolutionBackupRestoreServiceApp Deactivate a serviceApp. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaDeactivateSolutionBackupRestoreServiceApp](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Invoke-MgBetaDeactivateSolutionBackupRestoreServiceApp?view=graph-powershell-beta) + ## SYNTAX ### Deactivate (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md index aaac2f85f62bf..91dcf8a63d36f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md @@ -15,6 +15,9 @@ title: Invoke-MgOffboardSolutionBackupRestoreProtectionUnit Offboard a protectionUnitBase. +> [!NOTE] +> To view the beta release of this cmdlet, view [Invoke-MgBetaOffboardSolutionBackupRestoreProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Invoke-MgBetaOffboardSolutionBackupRestoreProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### Offboard (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md index 2a77ac6a21ff1..061843762c156 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestoreBrowseSession Create new navigation property to browseSessions for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreBrowseSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreBrowseSession?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveInclusionRule.md index f7dc4ac128bfd..25c3c72d613cd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveInclusionRule.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestoreDriveInclusionRule Create new navigation property to driveInclusionRules for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreDriveInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreDriveInclusionRule?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnit.md index 35578f6af75f7..01ee1dbc9cfb3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnit.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestoreDriveProtectionUnit Create new navigation property to driveProtectionUnits for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreDriveProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreDriveProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md index e003f9a519fcd..bc48ccc73d3fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob Create new navigation property to driveProtectionUnitsBulkAdditionJobs for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md index 3771ae145e61c..fee209173bf78 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md @@ -17,6 +17,9 @@ Create a protection policy for the Exchange service in a Microsoft 365 tenant. The policy is set to inactive when it is created. Users can also provide a list of protection units under the policy. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreExchangeProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreExchangeProtectionPolicy?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md index 9f999ea35b01d..54bca1c5b1c91 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestoreExchangeRestoreSession Create a new exchangeRestoreSession object. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreExchangeRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreExchangeRestoreSession?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index 0019334a9bc7d..d655cbec52b46 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreAr Create new navigation property to granularMailboxRestoreArtifacts for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md index 6b6ee3514fd0e..ec95fe7ed134d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact Create new navigation property to mailboxRestoreArtifacts for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md index f898aefd6df05..19c4f1a7aab0c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md @@ -16,6 +16,9 @@ title: New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBu Create a new mailboxRestoreArtifactsBulkAdditionRequest object associated with an exchangeRestoreSession. The following steps describe how to create and manage an exchangeRestoreSession with bulk artifact additions: +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxInclusionRule.md index 0e46c4a126075..9098d87d87971 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxInclusionRule.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestoreMailboxInclusionRule Create new navigation property to mailboxInclusionRules for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreMailboxInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreMailboxInclusionRule?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnit.md index 54bbe7c392179..80ae4e56e37fa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnit.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestoreMailboxProtectionUnit Create new navigation property to mailboxProtectionUnits for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreMailboxProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreMailboxProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md index 8ae5e81c7b708..97080819e9823 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob Create new navigation property to mailboxProtectionUnitsBulkAdditionJobs for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md index 0cc7e7bbc1da0..b223f085b660e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession Create a new oneDriveForBusinessBrowseSession object. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreOneDriveForBusinessBrowseSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreOneDriveForBusinessBrowseSession?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md index 586fc42a76fe7..c9a3e64666d4f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md @@ -17,6 +17,9 @@ Create a protection policy for the OneDrive service in Microsoft 365. When the policy is created, its state is set to inactive. Users can also provide a list of protection units under the policy. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicy?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md index 4b836d792028d..bfe0a4894e074 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md @@ -18,6 +18,9 @@ To create a granular restore session, granular drive restore artifacts must be p A request can't include both granularDriveRestoreArtifact and driveRestoreArtifact in the same create or update request. If no payload is provided when you create the restore session, the request creates an empty standard restore session by default. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSession?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md index 39242bb8baf4e..d50fe816d0767 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreA Create new navigation property to driveRestoreArtifacts for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md index dcaa2c5fb9040..c4e5c446bbf09 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md @@ -16,6 +16,9 @@ title: New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreA Create a driveRestoreArtifactsBulkAdditionRequest object associated with a oneDriveForBusinessRestoreSession. The following steps describe how to create and manage a oneDriveForBusinessRestoreSession with bulk artifact additions. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md index 336bc1f2ed95b..899f6e5d27d22 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDrive Create new navigation property to granularDriveRestoreArtifacts for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestorePoint.md index 1873633982532..f9a511766b07e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestorePoint.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestorePoint Create new navigation property to restorePoints for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestorePoint](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestorePoint?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md index 2ce5e438e5d1e..0ed0f65b2384e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestoreProtectionPolicy Create new navigation property to protectionPolicies for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreProtectionPolicy?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreServiceApp.md index 05bfa4f3b858b..ede9034220231 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreServiceApp.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestoreServiceApp Create a new serviceApp. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreServiceApp](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreServiceApp?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSession.md index 113e36c52c74d..3be6138da5ce0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSession.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestoreSession Create new navigation property to restoreSessions for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreSession?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md index f0a223fbf70df..23a33b4779461 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestoreSharePointBrowseSession Create a new sharePointBrowseSession object. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreSharePointBrowseSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreSharePointBrowseSession?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md index 9ef6c080c2892..51c4ee0ee6548 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md @@ -17,6 +17,9 @@ Create a protection policy for a M365 service SharePoint. Policy will be created in inactive state. User can also provide a list of protection units under the policy. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreSharePointProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreSharePointProtectionPolicy?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSession.md index 44a424d97d987..e4614eec80933 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSession.md @@ -18,6 +18,9 @@ To create a granular restore session, granular site restore artifacts must be pr A request can't include both granularSiteRestoreArtifact and siteRestoreArtifact in the same create or update request. If no payload is provided when you create the restore session, the request creates an empty standard restore session by default. +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreSharePointRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreSharePointRestoreSession?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md index 8322e053ab7f1..61b07c6339339 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArt Create new navigation property to granularSiteRestoreArtifacts for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md index f56525bc2be2e..04b96c192d9fb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact Create new navigation property to siteRestoreArtifacts for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md index df38dc51b694a..50815b3b348d4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md @@ -16,6 +16,9 @@ title: New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBul Create a new siteRestoreArtifactsBulkAdditionRequest object associated with a sharePointRestoreSession. The following steps describe how to create and manage a sharePointRestoreSession with bulk artifact additions: +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteInclusionRule.md index e875c29248660..7534eacbe4438 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteInclusionRule.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestoreSiteInclusionRule Create new navigation property to siteInclusionRules for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreSiteInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreSiteInclusionRule?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnit.md index 5d5f5c24eba48..40b5c4f5fdabb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnit.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestoreSiteProtectionUnit Create new navigation property to siteProtectionUnits for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreSiteProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreSiteProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md index 4a63c6a9b2013..f63e4bbd5765d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md @@ -15,6 +15,9 @@ title: New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob Create new navigation property to siteProtectionUnitsBulkAdditionJobs for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob?view=graph-powershell-beta) + ## SYNTAX ### CreateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestore.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestore.md index c4a52978cfd29..f54d0be192eb2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestore.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestore.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestore Delete navigation property backupRestore for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestore](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestore?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreBrowseSession.md index a92209ae197a7..6f4dbcb45605d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreBrowseSession.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreBrowseSession Delete navigation property browseSessions for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreBrowseSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreBrowseSession?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveInclusionRule.md index 065023e016135..b799bf123a21f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveInclusionRule.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreDriveInclusionRule Delete navigation property driveInclusionRules for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreDriveInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreDriveInclusionRule?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnit.md index d653be6d29051..08d4535d9f437 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnit.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreDriveProtectionUnit Delete navigation property driveProtectionUnits for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreDriveProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreDriveProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md index 6c306ca818d14..65d221bda33b4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob Delete navigation property driveProtectionUnitsBulkAdditionJobs for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeProtectionPolicy.md index f2bf828230651..e0aa13fc186eb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeProtectionPolicy.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreExchangeProtectionPolicy Delete navigation property exchangeProtectionPolicies for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreExchangeProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreExchangeProtectionPolicy?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSession.md index d8538b5fb4280..fb06bb6a0ab87 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSession.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreExchangeRestoreSession Delete navigation property exchangeRestoreSessions for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreExchangeRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreExchangeRestoreSession?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index 10134ad0e34cf..803c66747e3ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestor Delete navigation property granularMailboxRestoreArtifacts for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md index 50c17ba0e8228..d5bcde20ded56 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifac Delete navigation property mailboxRestoreArtifacts for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md index 08553eb3347a7..6602cef9e8893 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifac Delete a mailboxRestoreArtifactsBulkAdditionRequest object associated with an exchangeRestoreSession. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxInclusionRule.md index 6768fe9ac7cfb..54e422da0f5fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxInclusionRule.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreMailboxInclusionRule Delete navigation property mailboxInclusionRules for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreMailboxInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreMailboxInclusionRule?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnit.md index 797db7f2bcd2d..416dcc9eccba2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnit.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreMailboxProtectionUnit Delete navigation property mailboxProtectionUnits for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreMailboxProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreMailboxProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md index e72584996b7ac..be9cebc60ae6d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob Delete navigation property mailboxProtectionUnitsBulkAdditionJobs for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md index b73e8e886ce47..4fa36dbe1af85 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession Delete navigation property oneDriveForBusinessBrowseSessions for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreOneDriveForBusinessBrowseSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreOneDriveForBusinessBrowseSession?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md index b18b13e50e75d..397bf5cef0676 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy Delete navigation property oneDriveForBusinessProtectionPolicies for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicy?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md index 3c0d52d504d00..3e8023689baa4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession Delete navigation property oneDriveForBusinessRestoreSessions for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSession?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md index 13a625dc3ac28..fd709245634b5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveResto Delete navigation property driveRestoreArtifacts for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md index e39d8fd9ffdfa..7dde829bc4709 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveResto Delete a driveRestoreArtifactsBulkAdditionRequest object associated with a oneDriveForBusinessRestoreSession. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md index cfdf2002e912e..201ebd802b642 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDr Delete navigation property granularDriveRestoreArtifacts for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestorePoint.md index a79c9d1e20837..7a9be3a373736 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestorePoint.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestorePoint Delete navigation property restorePoints for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestorePoint](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestorePoint?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreProtectionPolicy.md index 10f461763aae9..1849bc0bb9fe4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreProtectionPolicy.md @@ -19,6 +19,9 @@ When you delete a policy, all associated protection units are removed, and backu Existing backup data is retained according to the retention policy before it's offboarded. You can restore data using previous restore points even after deletion. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreProtectionPolicy?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreServiceApp.md index 0a03537f1d808..5afd11796583a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreServiceApp.md @@ -16,6 +16,9 @@ title: Remove-MgSolutionBackupRestoreServiceApp Delete a serviceApp. When this API is called via Microsoft Graph PowerShell, it returns a 403 Forbidden response code. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreServiceApp](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreServiceApp?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSession.md index 551d6267be8e2..79852d1833e57 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSession.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreSession Delete a draft restoreSessionBase object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreSession?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointBrowseSession.md index f36b095e9c20f..5e92cb7119696 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreSharePointBrowseSession Delete navigation property sharePointBrowseSessions for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreSharePointBrowseSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreSharePointBrowseSession?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointProtectionPolicy.md index 31aa9443a2288..75ad16ca6e6d1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointProtectionPolicy.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreSharePointProtectionPolicy Delete navigation property sharePointProtectionPolicies for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreSharePointProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreSharePointProtectionPolicy?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSession.md index a18585a149a72..323178e3d6cf3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSession.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreSharePointRestoreSession Delete navigation property sharePointRestoreSessions for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreSharePointRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreSharePointRestoreSession?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md index 5abe52b3e6b56..c08ada1125ec0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestore Delete navigation property granularSiteRestoreArtifacts for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md index 70db79da73b3e..a75fedb3cf4d9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact Delete navigation property siteRestoreArtifacts for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md index f07a0c84f6348..9464f020bece4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact Delete a siteRestoreArtifactsBulkAdditionRequest object associated with a sharepointRestoreSession. +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteInclusionRule.md index 9b9040ea6cb91..a420e84a199dd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteInclusionRule.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreSiteInclusionRule Delete navigation property siteInclusionRules for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreSiteInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreSiteInclusionRule?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnit.md index 5f7990ab70efb..aeb356034a173 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnit.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreSiteProtectionUnit Delete navigation property siteProtectionUnits for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreSiteProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreSiteProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md index b8f62673126ac..c85c276bb19a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md @@ -15,6 +15,9 @@ title: Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob Delete navigation property siteProtectionUnitsBulkAdditionJobs for solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Remove-MgBetaSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Remove-MgBetaSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob?view=graph-powershell-beta) + ## SYNTAX ### Delete (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md index d8ffe91b186e2..5172baec94f06 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md @@ -15,6 +15,9 @@ title: Search-MgSolutionBackupRestorePoint Search for the restorePoint objects associated with a protectionUnit. +> [!NOTE] +> To view the beta release of this cmdlet, view [Search-MgBetaSolutionBackupRestorePoint](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Search-MgBetaSolutionBackupRestorePoint?view=graph-powershell-beta) + ## SYNTAX ### SearchExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Stop-MgSolutionBackupRestoreProtectionUnitOffboard.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Stop-MgSolutionBackupRestoreProtectionUnitOffboard.md index a02b2458adf7a..2bb70b99716bc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Stop-MgSolutionBackupRestoreProtectionUnitOffboard.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Stop-MgSolutionBackupRestoreProtectionUnitOffboard.md @@ -15,6 +15,9 @@ title: Stop-MgSolutionBackupRestoreProtectionUnitOffboard Cancel the offboarding of a protectionUnitBase. +> [!NOTE] +> To view the beta release of this cmdlet, view [Stop-MgBetaSolutionBackupRestoreProtectionUnitOffboard](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Stop-MgBetaSolutionBackupRestoreProtectionUnitOffboard?view=graph-powershell-beta) + ## SYNTAX ### Cancel (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md index 0a44ee0f2c3d0..e9f85277f97bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestore Update the navigation property backupRestore in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestore](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestore?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md index 0a1339780912c..31b4152cb671a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreBrowseSession Update the navigation property browseSessions in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreBrowseSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreBrowseSession?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveInclusionRule.md index 984346ef25268..7a1226dd0a03c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveInclusionRule.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreDriveInclusionRule Update the navigation property driveInclusionRules in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreDriveInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreDriveInclusionRule?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnit.md index cbc9cbb778b12..d5daef84733fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnit.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreDriveProtectionUnit Update the navigation property driveProtectionUnits in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreDriveProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreDriveProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md index 327707bf91085..62ae61b04179d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob Update the navigation property driveProtectionUnitsBulkAdditionJobs in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md index 2c9c34026a811..4e792a5091f7e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md @@ -16,6 +16,9 @@ title: Update-MgSolutionBackupRestoreExchangeProtectionPolicy Update an Exchange protection policy. This method adds a mailboxprotectionunit to or removes it from the protection policy. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreExchangeProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreExchangeProtectionPolicy?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md index 96956bb220305..fdf7804e0397a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreExchangeRestoreSession Update the properties of an exchangeRestoreSession. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreExchangeRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreExchangeRestoreSession?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index 4ac03bd051143..4db10aeba8413 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestor Update the navigation property granularMailboxRestoreArtifacts in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md index 63517af227346..9baffcf629987 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifac Update the navigation property mailboxRestoreArtifacts in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md index 53789896985fe..1860a2f10c39b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifac Update the navigation property mailboxRestoreArtifactsBulkAdditionRequests in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxInclusionRule.md index 4e3707187b9e8..e7e6e0e4faadb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxInclusionRule.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreMailboxInclusionRule Update the navigation property mailboxInclusionRules in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreMailboxInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreMailboxInclusionRule?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnit.md index 5997a8d87f171..90209aa8fb369 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnit.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreMailboxProtectionUnit Update the navigation property mailboxProtectionUnits in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreMailboxProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreMailboxProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md index d31c9f2ecddfa..9ba6e59169232 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob Update the navigation property mailboxProtectionUnitsBulkAdditionJobs in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md index 60de3ae86837e..30029d36e8b5f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession Update the navigation property oneDriveForBusinessBrowseSessions in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreOneDriveForBusinessBrowseSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreOneDriveForBusinessBrowseSession?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md index 4e6f7a66b54c9..cdb44e9f7d988 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md @@ -16,6 +16,9 @@ title: Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy Update the protection policy for the OneDrive service in Microsoft 365. This method adds a driveProtectionUnit to or removes it from a oneDriveForBusinessProtectionPolicy object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreOneDriveForBusinessProtectionPolicy?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md index c7148d364a183..f0ff502be49d7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession Update the properties of a oneDriveForBusinessRestoreSession object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSession?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md index 2fbcff13bcc77..76386c1b7099e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveResto Update the navigation property driveRestoreArtifacts in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md index e69315eaf311b..a56be973b74da 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveResto Update the navigation property driveRestoreArtifactsBulkAdditionRequests in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md index 3affb78e6e5e0..509e24f835330 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDr Update the navigation property granularDriveRestoreArtifacts in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestorePoint.md index 54d855c930157..837db2984a1dd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestorePoint.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestorePoint Update the navigation property restorePoints in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestorePoint](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestorePoint?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md index 6d15d9b662a3e..fe8fbd74a4527 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreProtectionPolicy Update the navigation property protectionPolicies in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreProtectionPolicy?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreServiceApp.md index 6cd1d240a8eb8..63ce463a84c6f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreServiceApp.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreServiceApp Update the navigation property serviceApps in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreServiceApp](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreServiceApp?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSession.md index dc5842823df6c..632327d3ed528 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSession.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreSession Update the navigation property restoreSessions in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreSession?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md index 390b94b2ed290..a70967911b319 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreSharePointBrowseSession Update the navigation property sharePointBrowseSessions in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreSharePointBrowseSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreSharePointBrowseSession?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md index bcd7700db444c..48700e409398e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md @@ -16,6 +16,9 @@ title: Update-MgSolutionBackupRestoreSharePointProtectionPolicy Update a SharePoint protection policy. This method adds a siteprotectionunit to or removes it from the protection policy. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreSharePointProtectionPolicy](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreSharePointProtectionPolicy?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSession.md index 63f085303b7d1..8c64606d2bf15 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSession.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreSharePointRestoreSession Update the properties of a sharePointRestoreSession object. +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreSharePointRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreSharePointRestoreSession?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md index 3b1d869ec5b18..cd5f5a0d65abf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestore Update the navigation property granularSiteRestoreArtifacts in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md index 5dd6f0f9ce1a7..b79bb3f080fdb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact Update the navigation property siteRestoreArtifacts in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md index aab32f4b65987..c62fcccf21857 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact Update the navigation property siteRestoreArtifactsBulkAdditionRequests in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteInclusionRule.md index 376423f4e8d38..beebc5f365827 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteInclusionRule.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreSiteInclusionRule Update the navigation property siteInclusionRules in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreSiteInclusionRule](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreSiteInclusionRule?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnit.md index 34eef53de0387..816d1ea54bd29 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnit.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreSiteProtectionUnit Update the navigation property siteProtectionUnits in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreSiteProtectionUnit](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreSiteProtectionUnit?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md index 820b13dc649d6..8451a0e4b2901 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md @@ -15,6 +15,9 @@ title: Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob Update the navigation property siteProtectionUnitsBulkAdditionJobs in solutions +> [!NOTE] +> To view the beta release of this cmdlet, view [Update-MgBetaSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob](/powershell/module/Microsoft.Graph.Beta.BackupRestore/Update-MgBetaSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob?view=graph-powershell-beta) + ## SYNTAX ### UpdateExpanded (Default) From dacc1f65a8c354952b4bbfd59bbe3b7a1e1c1161 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:51:14 +0000 Subject: [PATCH 14/16] Remove boiler plate code injected by Autorest --- .../Enable-MgSolutionBackupRestore.md | 11 +---------- .../Get-MgSolutionBackupRestore.md | 11 +---------- .../Get-MgSolutionBackupRestoreBrowseSession.md | 11 +---------- .../Get-MgSolutionBackupRestoreBrowseSessionCount.md | 11 +---------- .../Get-MgSolutionBackupRestoreDriveInclusionRule.md | 11 +---------- ...-MgSolutionBackupRestoreDriveInclusionRuleCount.md | 11 +---------- .../Get-MgSolutionBackupRestoreDriveProtectionUnit.md | 11 +---------- ...BackupRestoreDriveProtectionUnitBulkAdditionJob.md | 11 +---------- ...pRestoreDriveProtectionUnitBulkAdditionJobCount.md | 11 +---------- ...MgSolutionBackupRestoreDriveProtectionUnitCount.md | 11 +---------- ...MgSolutionBackupRestoreExchangeProtectionPolicy.md | 11 +---------- ...utionBackupRestoreExchangeProtectionPolicyCount.md | 11 +---------- ...oreExchangeProtectionPolicyMailboxInclusionRule.md | 11 +---------- ...changeProtectionPolicyMailboxInclusionRuleCount.md | 11 +---------- ...reExchangeProtectionPolicyMailboxProtectionUnit.md | 11 +---------- ...ctionPolicyMailboxProtectionUnitBulkAdditionJob.md | 11 +---------- ...PolicyMailboxProtectionUnitBulkAdditionJobCount.md | 11 +---------- ...hangeProtectionPolicyMailboxProtectionUnitCount.md | 11 +---------- ...t-MgSolutionBackupRestoreExchangeRestoreSession.md | 11 +---------- ...olutionBackupRestoreExchangeRestoreSessionCount.md | 11 +---------- ...ngeRestoreSessionGranularMailboxRestoreArtifact.md | 11 +---------- ...storeSessionGranularMailboxRestoreArtifactCount.md | 11 +---------- ...ssionGranularMailboxRestoreArtifactRestorePoint.md | 11 +---------- ...oreExchangeRestoreSessionMailboxRestoreArtifact.md | 11 +---------- ...essionMailboxRestoreArtifactBulkAdditionRequest.md | 11 +---------- ...nMailboxRestoreArtifactBulkAdditionRequestCount.md | 11 +---------- ...changeRestoreSessionMailboxRestoreArtifactCount.md | 11 +---------- ...estoreSessionMailboxRestoreArtifactRestorePoint.md | 11 +---------- ...Get-MgSolutionBackupRestoreMailboxInclusionRule.md | 11 +---------- ...gSolutionBackupRestoreMailboxInclusionRuleCount.md | 11 +---------- ...et-MgSolutionBackupRestoreMailboxProtectionUnit.md | 11 +---------- ...ckupRestoreMailboxProtectionUnitBulkAdditionJob.md | 11 +---------- ...estoreMailboxProtectionUnitBulkAdditionJobCount.md | 11 +---------- ...SolutionBackupRestoreMailboxProtectionUnitCount.md | 11 +---------- ...onBackupRestoreOneDriveForBusinessBrowseSession.md | 11 +---------- ...kupRestoreOneDriveForBusinessBrowseSessionCount.md | 11 +---------- ...ackupRestoreOneDriveForBusinessProtectionPolicy.md | 11 +---------- ...RestoreOneDriveForBusinessProtectionPolicyCount.md | 11 +---------- ...veForBusinessProtectionPolicyDriveInclusionRule.md | 11 +---------- ...BusinessProtectionPolicyDriveInclusionRuleCount.md | 11 +---------- ...eForBusinessProtectionPolicyDriveProtectionUnit.md | 11 +---------- ...tectionPolicyDriveProtectionUnitBulkAdditionJob.md | 11 +---------- ...onPolicyDriveProtectionUnitBulkAdditionJobCount.md | 11 +---------- ...usinessProtectionPolicyDriveProtectionUnitCount.md | 11 +---------- ...nBackupRestoreOneDriveForBusinessRestoreSession.md | 11 +---------- ...upRestoreOneDriveForBusinessRestoreSessionCount.md | 11 +---------- ...veForBusinessRestoreSessionDriveRestoreArtifact.md | 11 +---------- ...eSessionDriveRestoreArtifactBulkAdditionRequest.md | 11 +---------- ...ionDriveRestoreArtifactBulkAdditionRequestCount.md | 11 +---------- ...BusinessRestoreSessionDriveRestoreArtifactCount.md | 11 +---------- ...sRestoreSessionDriveRestoreArtifactRestorePoint.md | 11 +---------- ...inessRestoreSessionGranularDriveRestoreArtifact.md | 11 +---------- ...RestoreSessionGranularDriveRestoreArtifactCount.md | 11 +---------- .../Get-MgSolutionBackupRestorePoint.md | 11 +---------- .../Get-MgSolutionBackupRestorePointCount.md | 11 +---------- .../Get-MgSolutionBackupRestorePointProtectionUnit.md | 11 +---------- .../Get-MgSolutionBackupRestoreProtectionPolicy.md | 11 +---------- ...et-MgSolutionBackupRestoreProtectionPolicyCount.md | 11 +---------- .../Get-MgSolutionBackupRestoreProtectionUnit.md | 11 +---------- ...ackupRestoreProtectionUnitAsDriveProtectionUnit.md | 11 +---------- ...kupRestoreProtectionUnitAsMailboxProtectionUnit.md | 11 +---------- ...BackupRestoreProtectionUnitAsSiteProtectionUnit.md | 11 +---------- .../Get-MgSolutionBackupRestoreProtectionUnitCount.md | 11 +---------- ...RestoreProtectionUnitCountAsDriveProtectionUnit.md | 11 +---------- ...storeProtectionUnitCountAsMailboxProtectionUnit.md | 11 +---------- ...pRestoreProtectionUnitCountAsSiteProtectionUnit.md | 11 +---------- .../Get-MgSolutionBackupRestoreServiceApp.md | 11 +---------- .../Get-MgSolutionBackupRestoreServiceAppCount.md | 11 +---------- .../Get-MgSolutionBackupRestoreSession.md | 11 +---------- .../Get-MgSolutionBackupRestoreSessionCount.md | 11 +---------- ...-MgSolutionBackupRestoreSharePointBrowseSession.md | 11 +---------- ...lutionBackupRestoreSharePointBrowseSessionCount.md | 11 +---------- ...SolutionBackupRestoreSharePointProtectionPolicy.md | 11 +---------- ...ionBackupRestoreSharePointProtectionPolicyCount.md | 11 +---------- ...toreSharePointProtectionPolicySiteInclusionRule.md | 11 +---------- ...harePointProtectionPolicySiteInclusionRuleCount.md | 11 +---------- ...oreSharePointProtectionPolicySiteProtectionUnit.md | 11 +---------- ...otectionPolicySiteProtectionUnitBulkAdditionJob.md | 11 +---------- ...ionPolicySiteProtectionUnitBulkAdditionJobCount.md | 11 +---------- ...arePointProtectionPolicySiteProtectionUnitCount.md | 11 +---------- ...MgSolutionBackupRestoreSharePointRestoreSession.md | 11 +---------- ...utionBackupRestoreSharePointRestoreSessionCount.md | 11 +---------- ...ePointRestoreSessionGranularSiteRestoreArtifact.md | 11 +---------- ...tRestoreSessionGranularSiteRestoreArtifactCount.md | 11 +---------- ...toreSharePointRestoreSessionSiteRestoreArtifact.md | 11 +---------- ...reSessionSiteRestoreArtifactBulkAdditionRequest.md | 11 +---------- ...sionSiteRestoreArtifactBulkAdditionRequestCount.md | 11 +---------- ...harePointRestoreSessionSiteRestoreArtifactCount.md | 11 +---------- ...ntRestoreSessionSiteRestoreArtifactRestorePoint.md | 11 +---------- .../Get-MgSolutionBackupRestoreSiteInclusionRule.md | 11 +---------- ...t-MgSolutionBackupRestoreSiteInclusionRuleCount.md | 11 +---------- .../Get-MgSolutionBackupRestoreSiteProtectionUnit.md | 11 +---------- ...nBackupRestoreSiteProtectionUnitBulkAdditionJob.md | 11 +---------- ...upRestoreSiteProtectionUnitBulkAdditionJobCount.md | 11 +---------- ...-MgSolutionBackupRestoreSiteProtectionUnitCount.md | 11 +---------- ...tialize-MgSolutionBackupRestoreProtectionPolicy.md | 11 +---------- .../Initialize-MgSolutionBackupRestoreServiceApp.md | 11 +---------- .../Initialize-MgSolutionBackupRestoreSession.md | 11 +---------- ...voke-MgBrowseSolutionBackupRestoreBrowseSession.md | 11 +---------- ...DeactivateSolutionBackupRestoreProtectionPolicy.md | 11 +---------- ...oke-MgDeactivateSolutionBackupRestoreServiceApp.md | 11 +---------- ...e-MgOffboardSolutionBackupRestoreProtectionUnit.md | 11 +---------- .../New-MgSolutionBackupRestoreBrowseSession.md | 11 +---------- .../New-MgSolutionBackupRestoreDriveInclusionRule.md | 11 +---------- .../New-MgSolutionBackupRestoreDriveProtectionUnit.md | 11 +---------- ...BackupRestoreDriveProtectionUnitBulkAdditionJob.md | 11 +---------- ...MgSolutionBackupRestoreExchangeProtectionPolicy.md | 11 +---------- ...w-MgSolutionBackupRestoreExchangeRestoreSession.md | 11 +---------- ...ngeRestoreSessionGranularMailboxRestoreArtifact.md | 11 +---------- ...oreExchangeRestoreSessionMailboxRestoreArtifact.md | 11 +---------- ...essionMailboxRestoreArtifactBulkAdditionRequest.md | 11 +---------- ...New-MgSolutionBackupRestoreMailboxInclusionRule.md | 11 +---------- ...ew-MgSolutionBackupRestoreMailboxProtectionUnit.md | 11 +---------- ...ckupRestoreMailboxProtectionUnitBulkAdditionJob.md | 11 +---------- ...onBackupRestoreOneDriveForBusinessBrowseSession.md | 11 +---------- ...ackupRestoreOneDriveForBusinessProtectionPolicy.md | 11 +---------- ...nBackupRestoreOneDriveForBusinessRestoreSession.md | 11 +---------- ...veForBusinessRestoreSessionDriveRestoreArtifact.md | 11 +---------- ...eSessionDriveRestoreArtifactBulkAdditionRequest.md | 11 +---------- ...inessRestoreSessionGranularDriveRestoreArtifact.md | 11 +---------- .../New-MgSolutionBackupRestorePoint.md | 11 +---------- .../New-MgSolutionBackupRestoreProtectionPolicy.md | 11 +---------- .../New-MgSolutionBackupRestoreServiceApp.md | 11 +---------- .../New-MgSolutionBackupRestoreSession.md | 11 +---------- ...-MgSolutionBackupRestoreSharePointBrowseSession.md | 11 +---------- ...SolutionBackupRestoreSharePointProtectionPolicy.md | 11 +---------- ...MgSolutionBackupRestoreSharePointRestoreSession.md | 11 +---------- ...ePointRestoreSessionGranularSiteRestoreArtifact.md | 11 +---------- ...toreSharePointRestoreSessionSiteRestoreArtifact.md | 11 +---------- ...reSessionSiteRestoreArtifactBulkAdditionRequest.md | 11 +---------- .../New-MgSolutionBackupRestoreSiteInclusionRule.md | 11 +---------- .../New-MgSolutionBackupRestoreSiteProtectionUnit.md | 11 +---------- ...nBackupRestoreSiteProtectionUnitBulkAdditionJob.md | 11 +---------- .../Remove-MgSolutionBackupRestore.md | 11 +---------- .../Remove-MgSolutionBackupRestoreBrowseSession.md | 11 +---------- ...emove-MgSolutionBackupRestoreDriveInclusionRule.md | 11 +---------- ...move-MgSolutionBackupRestoreDriveProtectionUnit.md | 11 +---------- ...BackupRestoreDriveProtectionUnitBulkAdditionJob.md | 11 +---------- ...MgSolutionBackupRestoreExchangeProtectionPolicy.md | 11 +---------- ...e-MgSolutionBackupRestoreExchangeRestoreSession.md | 11 +---------- ...ngeRestoreSessionGranularMailboxRestoreArtifact.md | 11 +---------- ...oreExchangeRestoreSessionMailboxRestoreArtifact.md | 11 +---------- ...essionMailboxRestoreArtifactBulkAdditionRequest.md | 11 +---------- ...ove-MgSolutionBackupRestoreMailboxInclusionRule.md | 11 +---------- ...ve-MgSolutionBackupRestoreMailboxProtectionUnit.md | 11 +---------- ...ckupRestoreMailboxProtectionUnitBulkAdditionJob.md | 11 +---------- ...onBackupRestoreOneDriveForBusinessBrowseSession.md | 11 +---------- ...ackupRestoreOneDriveForBusinessProtectionPolicy.md | 11 +---------- ...nBackupRestoreOneDriveForBusinessRestoreSession.md | 11 +---------- ...veForBusinessRestoreSessionDriveRestoreArtifact.md | 11 +---------- ...eSessionDriveRestoreArtifactBulkAdditionRequest.md | 11 +---------- ...inessRestoreSessionGranularDriveRestoreArtifact.md | 11 +---------- .../Remove-MgSolutionBackupRestorePoint.md | 11 +---------- .../Remove-MgSolutionBackupRestoreProtectionPolicy.md | 11 +---------- .../Remove-MgSolutionBackupRestoreServiceApp.md | 11 +---------- .../Remove-MgSolutionBackupRestoreSession.md | 11 +---------- ...-MgSolutionBackupRestoreSharePointBrowseSession.md | 11 +---------- ...SolutionBackupRestoreSharePointProtectionPolicy.md | 11 +---------- ...MgSolutionBackupRestoreSharePointRestoreSession.md | 11 +---------- ...ePointRestoreSessionGranularSiteRestoreArtifact.md | 11 +---------- ...toreSharePointRestoreSessionSiteRestoreArtifact.md | 11 +---------- ...reSessionSiteRestoreArtifactBulkAdditionRequest.md | 11 +---------- ...Remove-MgSolutionBackupRestoreSiteInclusionRule.md | 11 +---------- ...emove-MgSolutionBackupRestoreSiteProtectionUnit.md | 11 +---------- ...nBackupRestoreSiteProtectionUnitBulkAdditionJob.md | 11 +---------- .../Search-MgSolutionBackupRestorePoint.md | 11 +---------- ...p-MgSolutionBackupRestoreProtectionUnitOffboard.md | 11 +---------- .../Update-MgSolutionBackupRestore.md | 11 +---------- .../Update-MgSolutionBackupRestoreBrowseSession.md | 11 +---------- ...pdate-MgSolutionBackupRestoreDriveInclusionRule.md | 11 +---------- ...date-MgSolutionBackupRestoreDriveProtectionUnit.md | 11 +---------- ...BackupRestoreDriveProtectionUnitBulkAdditionJob.md | 11 +---------- ...MgSolutionBackupRestoreExchangeProtectionPolicy.md | 11 +---------- ...e-MgSolutionBackupRestoreExchangeRestoreSession.md | 11 +---------- ...ngeRestoreSessionGranularMailboxRestoreArtifact.md | 11 +---------- ...oreExchangeRestoreSessionMailboxRestoreArtifact.md | 11 +---------- ...essionMailboxRestoreArtifactBulkAdditionRequest.md | 11 +---------- ...ate-MgSolutionBackupRestoreMailboxInclusionRule.md | 11 +---------- ...te-MgSolutionBackupRestoreMailboxProtectionUnit.md | 11 +---------- ...ckupRestoreMailboxProtectionUnitBulkAdditionJob.md | 11 +---------- ...onBackupRestoreOneDriveForBusinessBrowseSession.md | 11 +---------- ...ackupRestoreOneDriveForBusinessProtectionPolicy.md | 11 +---------- ...nBackupRestoreOneDriveForBusinessRestoreSession.md | 11 +---------- ...veForBusinessRestoreSessionDriveRestoreArtifact.md | 11 +---------- ...eSessionDriveRestoreArtifactBulkAdditionRequest.md | 11 +---------- ...inessRestoreSessionGranularDriveRestoreArtifact.md | 11 +---------- .../Update-MgSolutionBackupRestorePoint.md | 11 +---------- .../Update-MgSolutionBackupRestoreProtectionPolicy.md | 11 +---------- .../Update-MgSolutionBackupRestoreServiceApp.md | 11 +---------- .../Update-MgSolutionBackupRestoreSession.md | 11 +---------- ...-MgSolutionBackupRestoreSharePointBrowseSession.md | 11 +---------- ...SolutionBackupRestoreSharePointProtectionPolicy.md | 11 +---------- ...MgSolutionBackupRestoreSharePointRestoreSession.md | 11 +---------- ...ePointRestoreSessionGranularSiteRestoreArtifact.md | 11 +---------- ...toreSharePointRestoreSessionSiteRestoreArtifact.md | 11 +---------- ...reSessionSiteRestoreArtifactBulkAdditionRequest.md | 11 +---------- ...Update-MgSolutionBackupRestoreSiteInclusionRule.md | 11 +---------- ...pdate-MgSolutionBackupRestoreSiteProtectionUnit.md | 11 +---------- ...nBackupRestoreSiteProtectionUnitBulkAdditionJob.md | 11 +---------- 199 files changed, 199 insertions(+), 1990 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md index 00b54ec230f4b..dc4ad38625ccf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Enable the Microsoft 365 Backup Storage service for a tenant. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -396,5 +386,6 @@ BODYPARAMETER ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md index 3b0912fea5d53..1a52b75d930c5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | BackupRestore-Restore.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -313,5 +303,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRule.md index b98c3381a3dcb..53b269009d8ca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRule.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, The list of drive inclusion rules applied to the tenant. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -589,5 +579,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRuleCount.md index 7437debc7067f..9f259a49f517f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRuleCount.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnit.md index 3b6b52aa8457d..fa74bf1d75ee9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnit.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, The list of drive protection units in the tenant. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -589,5 +579,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md index 7093af770024b..0d92f1079c7f4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Get driveProtectionUnitsBulkAdditionJobs from solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -589,5 +579,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.md index 031f2dacda5bd..b2e72b74e39e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitCount.md index 0fc32e0cda63c..52c1ad0052be9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitCount.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicy.md index 3cfff1b2fcb7f..eedce2cdf688c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicy.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, The list of Exchange protection policies in the tenant. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -589,5 +579,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount.md index 19f958af45196..50c00ff3885d3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md index 437027fcad9ca..cb77f2cc49792 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md @@ -77,16 +77,6 @@ After the rule is applied, the state is either completed or completedWithErrors. | Delegated (personal Microsoft account) | Not supported | | Application | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -635,5 +625,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md index 9a8bdc5f2df45..c94b7d95f4fa8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md @@ -57,16 +57,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit.md index 0515a20a43617..df6c7ead386a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit.md @@ -61,16 +61,6 @@ This cmdlet has the following aliases, The protection units (mailboxes) that are protected under the Exchange protection policy. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -617,5 +607,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.md index 6d9f41b3e1a9e..b186f0d110122 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.md @@ -62,16 +62,6 @@ This cmdlet has the following aliases, Get a mailboxProtectionUnitsBulkAdditionJob object by the ID associated with an exchangeProtectionPolicy. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -620,5 +610,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount.md index 8954fa8b81138..2f01d21d36fd7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -404,5 +394,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount.md index 78a7ac94e0d5b..94024980cd89f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -404,5 +394,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSession.md index 94599671cf723..6cb55796cb735 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSession.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, The list of Exchange restore sessions available in the tenant. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -589,5 +579,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionCount.md index fd056901072a8..9da849a0566c7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionCount.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index eba4186c440a1..9656bbe0a6cbf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md @@ -62,16 +62,6 @@ This cmdlet has the following aliases, Get granularMailboxRestoreArtifacts from solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -618,5 +608,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount.md index 16145a1a58022..9c3e6bff1e5e5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -404,5 +394,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint.md index 85de11b5a53db..21956d8bee53d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint.md @@ -50,16 +50,6 @@ This cmdlet has the following aliases, Represents the date and time when an artifact is protected by a protectionPolicy and can be restored. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -428,5 +418,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md index d0a81c9a5071c..a5fdd0495f0a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md @@ -61,16 +61,6 @@ This cmdlet has the following aliases, A collection of restore points and destination details that can be used to restore Exchange mailboxes. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -618,5 +608,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md index 77eebe8bd83a3..a69396d0e02f6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md @@ -62,16 +62,6 @@ This cmdlet has the following aliases, Get a mailboxRestoreArtifactsBulkAdditionRequest object by its id, associated with an exchangeRestoreSession. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -620,5 +610,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount.md index 12c0fd6205153..1a05a28aa639d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -404,5 +394,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount.md index daa2cbbdc6f75..4cff6776d7b1e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -404,5 +394,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.md index eaca6c000a402..d2a558d6438c6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Represents the date and time when an artifact is protected by a protectionPolicy and can be restored. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -427,5 +417,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRule.md index 0f4dfa1639bfb..a6f37867c256c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRule.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, The list of mailbox inclusion rules applied to the tenant. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -589,5 +579,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRuleCount.md index c22b0765bb576..842f98ee71402 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRuleCount.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnit.md index e3faaa864547b..db957aef08ef7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnit.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, The list of mailbox protection units in the tenant. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -589,5 +579,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md index 0b2aa6173800e..f67a703f6306b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Get mailboxProtectionUnitsBulkAdditionJobs from solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -589,5 +579,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.md index e1797155c23a1..087b3845b7a6d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md index ccb3ae68a3d0c..09458b0619551 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md index 0f97435f4ac3e..8982f8929fc6f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -68,16 +68,6 @@ Read the properties and relationships of oneDriveForBusinessBrowseSession object | Delegated (personal Microsoft account) | Not supported | | Application | BackupRestore-Restore.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -599,5 +589,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md index ed23d8505d55e..cf18c7ffb0d57 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | BackupRestore-Restore.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -313,5 +303,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md index 7b93ddd31b8da..2ca66d32e5ece 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, The list of OneDrive for Business protection policies in the tenant. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -589,5 +579,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount.md index 4d32976dde72f..a9b6724c323dc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md index 75333ceec584c..5292ffe2e7982 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md @@ -78,16 +78,6 @@ After the rule is applied, the state is either completed or completedWithErrors. | Delegated (personal Microsoft account) | Not supported | | Application | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -636,5 +626,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md index f5c7a9f4f267e..7178bd3a3ed7d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md @@ -57,16 +57,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit.md index ec1cbdb88e440..aac8a2417cd69 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit.md @@ -62,16 +62,6 @@ This cmdlet has the following aliases, Contains the protection units associated with a OneDrive for Business protection policy. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -619,5 +609,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.md index 1fe8547f88503..4f7cfded56df1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.md @@ -62,16 +62,6 @@ This cmdlet has the following aliases, Get a driveProtectionUnitsBulkAdditionJob object by the ID associated with a oneDriveForBusinessProtectionPolicy. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -620,5 +610,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.md index 90d73e5d8f888..a06e45cc04251 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -404,5 +394,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount.md index 7112b7a8c1783..9074f75ef22e2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -404,5 +394,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md index 918284cafce7b..ab5306b3927a1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, The list of OneDrive for Business restore sessions available in the tenant. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -589,5 +579,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount.md index c335b0d128498..4b9df080e837d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md index 5a444005f5b21..8e216ce6814fa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md @@ -62,16 +62,6 @@ This cmdlet has the following aliases, A collection of restore points and destination details that can be used to restore a OneDrive for work or school drive. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -619,5 +609,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md index 433207969af26..fab69454f19b7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md @@ -62,16 +62,6 @@ This cmdlet has the following aliases, Get a driveRestoreArtifactsBulkAdditionRequest object by its id, associated with a oneDriveForBusinessRestoreSession. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -620,5 +610,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount.md index c19963c65f8d1..58a9250fa8dd3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -404,5 +394,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount.md index a76b4b850572e..8b36a060d3a4e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -404,5 +394,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.md index 070c28a2cf9fe..eed525e2058da 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.md @@ -50,16 +50,6 @@ This cmdlet has the following aliases, Represents the date and time when an artifact is protected by a protectionPolicy and can be restored. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -428,5 +418,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md index f1e9c30faec06..3fb094eb848fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -62,16 +62,6 @@ This cmdlet has the following aliases, A collection of browse session ID and item key details that can be used to restore OneDrive for work or school files and folders. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -619,5 +609,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md index b5e6ad840ad36..bc2e8e4e6a428 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md @@ -57,16 +57,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | BackupRestore-Restore.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePoint.md index a66cac741c285..af1aa98d1834e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePoint.md @@ -58,16 +58,6 @@ This cmdlet has the following aliases, List of restore points in the tenant. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -588,5 +578,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md index 637d1270f8730..34bf41ed63894 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | BackupRestore-Search.Read.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -313,5 +303,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointProtectionUnit.md index 7be7dff9344f5..3cc3b77b797f4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointProtectionUnit.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, The site, drive, or mailbox units that are protected under a protection policy. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -405,5 +395,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicy.md index 57589cb8147ae..adc5a732335e5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicy.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, List of protection policies in the tenant. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -589,5 +579,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicyCount.md index e8fae3e46f203..e48da26c046be 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicyCount.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnit.md index 61fc3fe0ab236..1f62694d28f0f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnit.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Read the properties and relationships of a protectionUnitBase object. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -590,5 +580,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.md index 7a9de4b6f5502..0dd0f1f38c0b8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Get a list of the driveProtectionUnit objects that are associated with a oneDriveForBusinessProtectionPolicy. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -590,5 +580,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.md index dc37462b6df1e..e54a3519330a8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Get a list of mailboxProtectionUnit objects. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -590,5 +580,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.md index 279674f3deb16..862b0be30db95 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Get a list of the siteProtectionUnit objects that are associated with a sharePointProtectionPolicy. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -590,5 +580,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCount.md index 346994902b94f..934cb4ff35486 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCount.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit.md index fbf70a936b297..ca1aa9166255b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit.md index fa7c98765be26..a2ae83f3307aa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit.md index 14c8935b9c100..a294a5832e360 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceApp.md index f26a9296f7fb4..f1218c9f41e72 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceApp.md @@ -59,16 +59,6 @@ This cmdlet has the following aliases, Read the properties and relationships of a serviceApp object. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -590,5 +580,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceAppCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceAppCount.md index 7952699e16ef4..92964398a4bca 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceAppCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceAppCount.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSession.md index ecf1cbb0e4586..19cc4a1ac7598 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSession.md @@ -59,16 +59,6 @@ This cmdlet has the following aliases, Get the properties of a restoreSession object by ID. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -590,5 +580,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md index 3c9e27b606313..15bfe5a401c52 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | BackupRestore-Restore.Read.All, BackupRestore-Restore.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -313,5 +303,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md index ba3dd6bc31c85..61a5a13050960 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -68,16 +68,6 @@ Read the properties and relationships of sharePointBrowseSession object. | Delegated (personal Microsoft account) | Not supported | | Application | BackupRestore-Restore.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -599,5 +589,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md index 20a49de78310d..db5d9a51a0053 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md @@ -46,16 +46,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | BackupRestore-Restore.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -313,5 +303,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md index 53b40e89f9183..0e44cd92c5712 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, The list of SharePoint protection policies in the tenant. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -589,5 +579,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount.md index 6de8f9982bada..9646075a80a06 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md index b199ec7ef014c..c215da4f8edc8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md @@ -77,16 +77,6 @@ After the rule is applied, the state is either completed or completedWithErrors. | Delegated (personal Microsoft account) | Not supported | | Application | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -635,5 +625,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md index e5306f23dc308..dabb614d27646 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md @@ -57,16 +57,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | BackupRestore-Configuration.Read.All, BackupRestore-Configuration.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit.md index 35e672c1fc4ab..3f817abc9d3e7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit.md @@ -61,16 +61,6 @@ This cmdlet has the following aliases, The protection units (sites) that are protected under the site protection policy. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -618,5 +608,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob.md index baf462b1128b7..535c8e8bc2038 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob.md @@ -62,16 +62,6 @@ This cmdlet has the following aliases, Get a siteProtectionUnitsBulkAdditionJob object by the ID associated with a sharePointProtectionPolicy. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -620,5 +610,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount.md index be92a33c5dc39..4c9ed3afb74ed 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -404,5 +394,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount.md index acb0ab8a1f468..d33988235d7a5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -404,5 +394,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSession.md index 0458d096d9c2d..4848c1538eafa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSession.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, The list of SharePoint restore sessions available in the tenant. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -589,5 +579,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionCount.md index 751e7d63dd210..6d0edf5ff14d9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionCount.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md index 1b9fb88cabc10..bc1a53cad7305 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -62,16 +62,6 @@ This cmdlet has the following aliases, A collection of browse session ID and item key details that can be used to restore SharePoint files and folders. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -619,5 +609,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md index 59a81e1903674..e7092d1db4151 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md @@ -57,16 +57,6 @@ Get the number of the resource | Delegated (personal Microsoft account) | Not supported | | Application | BackupRestore-Restore.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -412,5 +402,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md index 58f27773ed981..6bcd2b480fa45 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md @@ -61,16 +61,6 @@ This cmdlet has the following aliases, A collection of restore points and destination details that can be used to restore SharePoint sites. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -618,5 +608,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md index f179bf25f25cf..0d532925f8a8d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md @@ -62,16 +62,6 @@ This cmdlet has the following aliases, Get a siteRestoreArtifactsBulkAdditionRequest object by its id, associated with a sharePointRestoreSession. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -620,5 +610,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount.md index 204835ee7fab1..0e5936ecf8080 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -404,5 +394,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount.md index b93aca330e1a9..2aa087ec85685 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -404,5 +394,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint.md index 90bd9aff2a41c..c8e3b5eb3f077 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Represents the date and time when an artifact is protected by a protectionPolicy and can be restored. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -427,5 +417,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRule.md index 08fb94db66c67..4f472a2a896f5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRule.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, The list of site inclusion rules applied to the tenant. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -589,5 +579,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRuleCount.md index fbc75d68f4cb3..3ce8d0090ba96 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRuleCount.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnit.md index f10c5c18d884f..61ba3cc0d390f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnit.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, The list of site protection units in the tenant. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -589,5 +579,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md index a18f1efc86f27..017db87002560 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md @@ -60,16 +60,6 @@ This cmdlet has the following aliases, Get siteProtectionUnitsBulkAdditionJobs from solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -All @@ -589,5 +579,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.md index c56f3e8fab393..330b7c746e5a2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitCount.md index 00687ab1d2670..afb7a63766b3c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitCount.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Get the number of the resource -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -305,5 +295,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreProtectionPolicy.md index 3ad018ad13c08..9214f3aef6a75 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreProtectionPolicy.md @@ -51,16 +51,6 @@ Activate a protectionPolicyBase. Currently, only one active backup policy per underlying service is supported (that is, one for OneDrive accounts, one for SharePoint sites, and one for Exchange Online users). You can add or remove artifacts (sites or user accounts) to or from each active policy. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -409,5 +399,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md index 4713474c3075e..c26ef065cb837 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md @@ -69,16 +69,6 @@ This cmdlet has the following aliases, Activate a serviceApp. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -529,5 +519,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreSession.md index d539eb06ffb11..88fc81489d59f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreSession.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Activate a draft restoreSessionBase object. The following points apply to restoring a protection unit: -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -407,5 +397,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md index b3ecdcc28b676..c44ea1932eac1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md @@ -91,16 +91,6 @@ This cmdlet has the following aliases, Invoke action browse -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -812,5 +802,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md index 987d8ab8daa7d..f27a6b6e8cfc7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md @@ -55,16 +55,6 @@ Any backups taken before deactivation are retained according to the retention po You can restore data using previous restore points even after deactivation. To reactivate a deactivated policy, use the activate API. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -413,5 +403,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md index 827afceb839c8..80970ea100fa7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Deactivate a serviceApp. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -405,5 +395,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md index 91dcf8a63d36f..9070a10056f4d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Offboard a protectionUnitBase. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -405,5 +395,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md index 061843762c156..91f8e5e1743e0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md @@ -50,16 +50,6 @@ This cmdlet has the following aliases, Create new navigation property to browseSessions for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -588,5 +578,6 @@ ERROR ``: publicError + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveInclusionRule.md index 25c3c72d613cd..f1108d47013ac 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveInclusionRule.md @@ -50,16 +50,6 @@ This cmdlet has the following aliases, Create new navigation property to driveInclusionRules for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -641,5 +631,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnit.md index 01ee1dbc9cfb3..57caad7f16633 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnit.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, Create new navigation property to driveProtectionUnits for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -696,5 +686,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md index bc48ccc73d3fe..30db5b989c372 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md @@ -52,16 +52,6 @@ This cmdlet has the following aliases, Create new navigation property to driveProtectionUnitsBulkAdditionJobs for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -663,5 +653,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md index fee209173bf78..3b5d53fa2dbe6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md @@ -60,16 +60,6 @@ Create a protection policy for the Exchange service in a Microsoft 365 tenant. The policy is set to inactive when it is created. Users can also provide a list of protection units under the policy. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -899,5 +889,6 @@ RETENTIONSETTINGS : Contains the retention se + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md index 54bca1c5b1c91..e93f75d8ea041 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md @@ -57,16 +57,6 @@ This cmdlet has the following aliases, Create a new exchangeRestoreSession object. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -989,5 +979,6 @@ RESTORESESSIONARTIFACTCOUNT ``: rest + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index d655cbec52b46..e690a69964586 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md @@ -78,16 +78,6 @@ This cmdlet has the following aliases, Create new navigation property to granularMailboxRestoreArtifacts for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -937,5 +927,6 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md index ec95fe7ed134d..c0f4add5c1f76 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Create new navigation property to mailboxRestoreArtifacts for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -876,5 +866,6 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md index 19c4f1a7aab0c..dc8a8c9f192e8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md @@ -85,16 +85,6 @@ This cmdlet has the following aliases, Create a new mailboxRestoreArtifactsBulkAdditionRequest object associated with an exchangeRestoreSession. The following steps describe how to create and manage an exchangeRestoreSession with bulk artifact additions: -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1016,5 +1006,6 @@ PROTECTIONTIMEPERIOD ``: timePeriod + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxInclusionRule.md index 9098d87d87971..645f712c06fe1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxInclusionRule.md @@ -52,16 +52,6 @@ This cmdlet has the following aliases, Create new navigation property to mailboxInclusionRules for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -643,5 +633,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnit.md index 80ae4e56e37fa..56d093dfbd845 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnit.md @@ -52,16 +52,6 @@ This cmdlet has the following aliases, Create new navigation property to mailboxProtectionUnits for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -697,5 +687,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md index 97080819e9823..27f9f73979710 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md @@ -52,16 +52,6 @@ This cmdlet has the following aliases, Create new navigation property to mailboxProtectionUnitsBulkAdditionJobs for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -663,5 +653,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md index b223f085b660e..73589c9d3569f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -59,16 +59,6 @@ Create a new oneDriveForBusinessBrowseSession object. | Delegated (personal Microsoft account) | Not supported | | Application | BackupRestore-Restore.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -620,5 +610,6 @@ ERROR ``: publicError + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md index c9a3e64666d4f..8d99737116c77 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md @@ -61,16 +61,6 @@ Create a protection policy for the OneDrive service in Microsoft 365. When the policy is created, its state is set to inactive. Users can also provide a list of protection units under the policy. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -900,5 +890,6 @@ RETENTIONSETTINGS : Contains the retention se + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md index bfe0a4894e074..4b610cabe6046 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md @@ -63,16 +63,6 @@ To create a granular restore session, granular drive restore artifacts must be p A request can't include both granularDriveRestoreArtifact and driveRestoreArtifact in the same create or update request. If no payload is provided when you create the restore session, the request creates an empty standard restore session by default. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -945,5 +935,6 @@ RESTORESESSIONARTIFACTCOUNT ``: rest + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md index d50fe816d0767..1ab74c485ea68 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Create new navigation property to driveRestoreArtifacts for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -848,5 +838,6 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md index c4e5c446bbf09..425123621296d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md @@ -85,16 +85,6 @@ This cmdlet has the following aliases, Create a driveRestoreArtifactsBulkAdditionRequest object associated with a oneDriveForBusinessRestoreSession. The following steps describe how to create and manage a oneDriveForBusinessRestoreSession with bulk artifact additions. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1016,5 +1006,6 @@ PROTECTIONTIMEPERIOD ``: timePeriod + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md index 899f6e5d27d22..13db0e8e6b56f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -76,16 +76,6 @@ This cmdlet has the following aliases, Create new navigation property to granularDriveRestoreArtifacts for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -819,5 +809,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestorePoint.md index f9a511766b07e..ef1dcb3bbf542 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestorePoint.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Create new navigation property to restorePoints for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -571,5 +561,6 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md index 0ed0f65b2384e..941f82b6db7cd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md @@ -52,16 +52,6 @@ This cmdlet has the following aliases, Create new navigation property to protectionPolicies for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -652,5 +642,6 @@ RETENTIONSETTINGS : Contains the retention se + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreServiceApp.md index ede9034220231..efb350e6f6528 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreServiceApp.md @@ -50,16 +50,6 @@ This cmdlet has the following aliases, Create a new serviceApp. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -561,5 +551,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSession.md index 3be6138da5ce0..485478c8abd7f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSession.md @@ -52,16 +52,6 @@ This cmdlet has the following aliases, Create new navigation property to restoreSessions for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -676,5 +666,6 @@ RESTORESESSIONARTIFACTCOUNT ``: rest + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md index 23a33b4779461..5d3180320036d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -59,16 +59,6 @@ Create a new sharePointBrowseSession object. | Delegated (personal Microsoft account) | Not supported | | Application | BackupRestore-Restore.ReadWrite.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -620,5 +610,6 @@ ERROR ``: publicError + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md index 51c4ee0ee6548..3fd064ade497d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md @@ -60,16 +60,6 @@ Create a protection policy for a M365 service SharePoint. Policy will be created in inactive state. User can also provide a list of protection units under the policy. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -899,5 +889,6 @@ Read-only. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSession.md index e4614eec80933..2a453ea536afc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSession.md @@ -63,16 +63,6 @@ To create a granular restore session, granular site restore artifacts must be pr A request can't include both granularSiteRestoreArtifact and siteRestoreArtifact in the same create or update request. If no payload is provided when you create the restore session, the request creates an empty standard restore session by default. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -945,5 +935,6 @@ Read-only. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md index 61b07c6339339..a1e0950243214 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Create new navigation property to granularSiteRestoreArtifacts for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -818,5 +808,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md index 04b96c192d9fb..15c263d6571e7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Create new navigation property to siteRestoreArtifacts for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -848,5 +838,6 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md index 50815b3b348d4..339ff20b838ed 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md @@ -83,16 +83,6 @@ This cmdlet has the following aliases, Create a new siteRestoreArtifactsBulkAdditionRequest object associated with a sharePointRestoreSession. The following steps describe how to create and manage a sharePointRestoreSession with bulk artifact additions: -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1014,5 +1004,6 @@ PROTECTIONTIMEPERIOD ``: timePeriod + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteInclusionRule.md index 7534eacbe4438..e75f371e8867e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteInclusionRule.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, Create new navigation property to siteInclusionRules for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -642,5 +632,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnit.md index 40b5c4f5fdabb..06b09f38562bb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnit.md @@ -51,16 +51,6 @@ This cmdlet has the following aliases, Create new navigation property to siteProtectionUnits for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -696,5 +686,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md index f63e4bbd5765d..e21835e91accb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md @@ -52,16 +52,6 @@ This cmdlet has the following aliases, Create new navigation property to siteProtectionUnitsBulkAdditionJobs for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -663,5 +653,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestore.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestore.md index f54d0be192eb2..a07be51130580 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestore.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestore.md @@ -38,16 +38,6 @@ This cmdlet has the following aliases, Delete navigation property backupRestore for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -349,5 +339,6 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreBrowseSession.md index 6f4dbcb45605d..e41e9f25896df 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreBrowseSession.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property browseSessions for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -446,5 +436,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveInclusionRule.md index b799bf123a21f..11b71cec5cbbc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveInclusionRule.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property driveInclusionRules for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -446,5 +436,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnit.md index 08d4535d9f437..fa2ffcb5a6f81 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnit.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property driveProtectionUnits for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -446,5 +436,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md index 65d221bda33b4..5acb553ee0d64 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete navigation property driveProtectionUnitsBulkAdditionJobs for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -448,5 +438,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeProtectionPolicy.md index e0aa13fc186eb..6f87c79fc4d97 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeProtectionPolicy.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property exchangeProtectionPolicies for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -446,5 +436,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSession.md index fb06bb6a0ab87..97b5e15b7996e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSession.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property exchangeRestoreSessions for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -446,5 +436,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index 803c66747e3ff..7a64481a85628 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete navigation property granularMailboxRestoreArtifacts for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -469,5 +459,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md index d5bcde20ded56..2a3f435a7abce 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete navigation property mailboxRestoreArtifacts for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -469,5 +459,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md index 6602cef9e8893..50dae03ac4790 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete a mailboxRestoreArtifactsBulkAdditionRequest object associated with an exchangeRestoreSession. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -470,5 +460,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxInclusionRule.md index 54e422da0f5fe..3802b7eaaccd6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxInclusionRule.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property mailboxInclusionRules for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -446,5 +436,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnit.md index 416dcc9eccba2..5a9ad3e93ff11 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnit.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property mailboxProtectionUnits for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -446,5 +436,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md index be9cebc60ae6d..657e3123c020a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete navigation property mailboxProtectionUnitsBulkAdditionJobs for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -448,5 +438,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md index 4fa36dbe1af85..c202071807a8e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -48,16 +48,6 @@ This cmdlet has the following aliases, Delete navigation property oneDriveForBusinessBrowseSessions for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -447,5 +437,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md index 397bf5cef0676..423279a67178e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete navigation property oneDriveForBusinessProtectionPolicies for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -448,5 +438,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md index 3e8023689baa4..5f390b7868664 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete navigation property oneDriveForBusinessRestoreSessions for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -448,5 +438,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md index fd709245634b5..2978ed1c1b480 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete navigation property driveRestoreArtifacts for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -469,5 +459,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md index 7dde829bc4709..a41e0488911f3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete a driveRestoreArtifactsBulkAdditionRequest object associated with a oneDriveForBusinessRestoreSession. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -470,5 +460,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md index 201ebd802b642..12d49f5ebacb3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete navigation property granularDriveRestoreArtifacts for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -469,5 +459,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestorePoint.md index 7a9be3a373736..fe49a75dd3fa5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestorePoint.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property restorePoints for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -446,5 +436,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreProtectionPolicy.md index 1849bc0bb9fe4..6f73d102d35b0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreProtectionPolicy.md @@ -55,16 +55,6 @@ When you delete a policy, all associated protection units are removed, and backu Existing backup data is retained according to the retention policy before it's offboarded. You can restore data using previous restore points even after deletion. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -455,5 +445,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreServiceApp.md index 5afd11796583a..93f5156d61758 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreServiceApp.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete a serviceApp. When this API is called via Microsoft Graph PowerShell, it returns a 403 Forbidden response code. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -449,5 +439,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSession.md index 79852d1833e57..78e6d6c6fdba6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSession.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete a draft restoreSessionBase object. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -447,5 +437,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointBrowseSession.md index 5e92cb7119696..9d3e00e7fbe7d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property sharePointBrowseSessions for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -446,5 +436,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointProtectionPolicy.md index 75ad16ca6e6d1..1b96cfd547b00 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointProtectionPolicy.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property sharePointProtectionPolicies for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -446,5 +436,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSession.md index 323178e3d6cf3..2f6a4e0daedc2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSession.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property sharePointRestoreSessions for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -446,5 +436,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md index c08ada1125ec0..916cc4dcdab3d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete navigation property granularSiteRestoreArtifacts for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -469,5 +459,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md index a75fedb3cf4d9..6b2093496e337 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete navigation property siteRestoreArtifacts for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -469,5 +459,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md index 9464f020bece4..74f84c82a592e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete a siteRestoreArtifactsBulkAdditionRequest object associated with a sharepointRestoreSession. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -470,5 +460,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteInclusionRule.md index a420e84a199dd..276047df92971 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteInclusionRule.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property siteInclusionRules for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -446,5 +436,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnit.md index aeb356034a173..19702383b743f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnit.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Delete navigation property siteProtectionUnits for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -446,5 +436,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md index c85c276bb19a1..22d0943dd86aa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md @@ -49,16 +49,6 @@ This cmdlet has the following aliases, Delete navigation property siteProtectionUnitsBulkAdditionJobs for solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -448,5 +438,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md index 5172baec94f06..5871444996a61 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md @@ -58,16 +58,6 @@ Search for the restorePoint objects associated with a protectionUnit. | Delegated (personal Microsoft account) | Not supported | | Application | BackupRestore-Search.Read.All, | -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -512,5 +502,6 @@ PROTECTIONTIMEPERIOD ``: timePeriod + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Stop-MgSolutionBackupRestoreProtectionUnitOffboard.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Stop-MgSolutionBackupRestoreProtectionUnitOffboard.md index 2bb70b99716bc..e1b794ec12a16 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Stop-MgSolutionBackupRestoreProtectionUnitOffboard.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Stop-MgSolutionBackupRestoreProtectionUnitOffboard.md @@ -47,16 +47,6 @@ This cmdlet has the following aliases, Cancel the offboarding of a protectionUnitBase. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -Break @@ -405,5 +395,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md index e9f85277f97bb..a4222e67d11c4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md @@ -70,16 +70,6 @@ This cmdlet has the following aliases, Update the navigation property backupRestore in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -2654,5 +2644,6 @@ Read-only. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md index 31b4152cb671a..b372a05e2c116 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Update the navigation property browseSessions in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -765,5 +755,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveInclusionRule.md index 7a1226dd0a03c..5c2f5e1296c01 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveInclusionRule.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Update the navigation property driveInclusionRules in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -826,5 +816,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnit.md index d5daef84733fc..d7a4e5e270589 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnit.md @@ -77,16 +77,6 @@ This cmdlet has the following aliases, Update the navigation property driveProtectionUnits in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -894,5 +884,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md index 62ae61b04179d..3115c39d0053f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md @@ -79,16 +79,6 @@ This cmdlet has the following aliases, Update the navigation property driveProtectionUnitsBulkAdditionJobs in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -856,5 +846,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md index 4e792a5091f7e..b9d4e98865830 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md @@ -87,16 +87,6 @@ This cmdlet has the following aliases, Update an Exchange protection policy. This method adds a mailboxprotectionunit to or removes it from the protection policy. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1110,5 +1100,6 @@ RETENTIONSETTINGS : Contains the retention se + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md index fdf7804e0397a..f487c6e5e096d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md @@ -85,16 +85,6 @@ This cmdlet has the following aliases, Update the properties of an exchangeRestoreSession. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1201,5 +1191,6 @@ RESTORESESSIONARTIFACTCOUNT ``: rest + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index 4db10aeba8413..df65c0a1062d9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md @@ -79,16 +79,6 @@ This cmdlet has the following aliases, Update the navigation property granularMailboxRestoreArtifacts in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -965,5 +955,6 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md index 9baffcf629987..c7712911b3a27 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md @@ -77,16 +77,6 @@ This cmdlet has the following aliases, Update the navigation property mailboxRestoreArtifacts in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -905,5 +895,6 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md index 1860a2f10c39b..5cf4acde83105 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md @@ -83,16 +83,6 @@ This cmdlet has the following aliases, Update the navigation property mailboxRestoreArtifactsBulkAdditionRequests in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1040,5 +1030,6 @@ PROTECTIONTIMEPERIOD ``: timePeriod + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxInclusionRule.md index e7e6e0e4faadb..de3f95e23dbad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxInclusionRule.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Update the navigation property mailboxInclusionRules in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -826,5 +816,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnit.md index 90209aa8fb369..38869f66d297a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnit.md @@ -77,16 +77,6 @@ This cmdlet has the following aliases, Update the navigation property mailboxProtectionUnits in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -894,5 +884,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md index 9ba6e59169232..4895ef2b212d5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md @@ -79,16 +79,6 @@ This cmdlet has the following aliases, Update the navigation property mailboxProtectionUnitsBulkAdditionJobs in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -856,5 +846,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md index 30029d36e8b5f..5351b37b28655 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -76,16 +76,6 @@ This cmdlet has the following aliases, Update the navigation property oneDriveForBusinessBrowseSessions in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -796,5 +786,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md index cdb44e9f7d988..c02431dfde770 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md @@ -91,16 +91,6 @@ This cmdlet has the following aliases, Update the protection policy for the OneDrive service in Microsoft 365. This method adds a driveProtectionUnit to or removes it from a oneDriveForBusinessProtectionPolicy object. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1114,5 +1104,6 @@ RETENTIONSETTINGS : Contains the retention se + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md index f0ff502be49d7..ed046efe2c85c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md @@ -89,16 +89,6 @@ This cmdlet has the following aliases, Update the properties of a oneDriveForBusinessRestoreSession object. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1155,5 +1145,6 @@ RESTORESESSIONARTIFACTCOUNT ``: rest + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md index 76386c1b7099e..ded64d883b783 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md @@ -76,16 +76,6 @@ This cmdlet has the following aliases, Update the navigation property driveRestoreArtifacts in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -876,5 +866,6 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md index a56be973b74da..3aaeafbbd6a99 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md @@ -83,16 +83,6 @@ This cmdlet has the following aliases, Update the navigation property driveRestoreArtifactsBulkAdditionRequests in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1040,5 +1030,6 @@ PROTECTIONTIMEPERIOD ``: timePeriod + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md index 509e24f835330..41df51046be5b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -77,16 +77,6 @@ This cmdlet has the following aliases, Update the navigation property granularDriveRestoreArtifacts in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -847,5 +837,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestorePoint.md index 837db2984a1dd..0a9b3e65f277e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestorePoint.md @@ -72,16 +72,6 @@ This cmdlet has the following aliases, Update the navigation property restorePoints in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -730,5 +720,6 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md index fe8fbd74a4527..41a164926e920 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md @@ -79,16 +79,6 @@ This cmdlet has the following aliases, Update the navigation property protectionPolicies in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -845,5 +835,6 @@ RETENTIONSETTINGS : Contains the retention se + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreServiceApp.md index 63ce463a84c6f..329115e83f37a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreServiceApp.md @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Update the navigation property serviceApps in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -731,5 +721,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSession.md index 632327d3ed528..09b92b37628fa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSession.md @@ -79,16 +79,6 @@ This cmdlet has the following aliases, Update the navigation property restoreSessions in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -869,5 +859,6 @@ RESTORESESSIONARTIFACTCOUNT ``: rest + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md index a70967911b319..d95adb6a5dab3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -73,16 +73,6 @@ This cmdlet has the following aliases, Update the navigation property sharePointBrowseSessions in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -793,5 +783,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md index 48700e409398e..cb7941482e952 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md @@ -87,16 +87,6 @@ This cmdlet has the following aliases, Update a SharePoint protection policy. This method adds a siteprotectionunit to or removes it from the protection policy. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1110,5 +1100,6 @@ Read-only. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSession.md index 8c64606d2bf15..0a985edfd7203 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSession.md @@ -85,16 +85,6 @@ This cmdlet has the following aliases, Update the properties of a sharePointRestoreSession object. -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1151,5 +1141,6 @@ Read-only. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md index cd5f5a0d65abf..46ce428818aea 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -77,16 +77,6 @@ This cmdlet has the following aliases, Update the navigation property granularSiteRestoreArtifacts in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -847,5 +837,6 @@ INPUTOBJECT ``: Identity Parameter + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md index b79bb3f080fdb..7560179639651 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md @@ -76,16 +76,6 @@ This cmdlet has the following aliases, Update the navigation property siteRestoreArtifacts in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -876,5 +866,6 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md index c62fcccf21857..134d7e3656750 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md @@ -82,16 +82,6 @@ This cmdlet has the following aliases, Update the navigation property siteRestoreArtifactsBulkAdditionRequests in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -1039,5 +1029,6 @@ PROTECTIONTIMEPERIOD ``: timePeriod + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteInclusionRule.md index beebc5f365827..551725ed8786b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteInclusionRule.md @@ -75,16 +75,6 @@ This cmdlet has the following aliases, Update the navigation property siteInclusionRules in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -826,5 +816,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnit.md index 816d1ea54bd29..7e388e446fa47 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnit.md @@ -77,16 +77,6 @@ This cmdlet has the following aliases, Update the navigation property siteProtectionUnits in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -894,5 +884,6 @@ For example, in the access reviews decisions API, this property might record the + diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md index 8451a0e4b2901..08b5fe8183e33 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md @@ -79,16 +79,6 @@ This cmdlet has the following aliases, Update the navigation property siteProtectionUnitsBulkAdditionJobs in solutions -## EXAMPLES - -### EXAMPLE 1 - -{{ Add code here }} - -### EXAMPLE 2 - -{{ Add code here }} - ## PARAMETERS ### -AdditionalProperties @@ -856,5 +846,6 @@ For example, in the access reviews decisions API, this property might record the + From e06f9c43cf0b202ec3eafdbf9d84c3a14b62834d Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:51:20 +0000 Subject: [PATCH 15/16] Removed invalid full stops from the beginning of lines --- .../Enable-MgSolutionBackupRestore.md | 4 ++-- .../Initialize-MgSolutionBackupRestoreServiceApp.md | 4 ++-- .../Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md | 6 +++--- .../New-MgSolutionBackupRestoreBrowseSession.md | 2 +- .../New-MgSolutionBackupRestoreExchangeProtectionPolicy.md | 4 ++-- .../New-MgSolutionBackupRestoreExchangeRestoreSession.md | 2 +- ...eExchangeRestoreSessionGranularMailboxRestoreArtifact.md | 2 +- ...SolutionBackupRestoreOneDriveForBusinessBrowseSession.md | 2 +- ...utionBackupRestoreOneDriveForBusinessProtectionPolicy.md | 4 ++-- .../New-MgSolutionBackupRestoreProtectionPolicy.md | 2 +- .../New-MgSolutionBackupRestoreSharePointBrowseSession.md | 2 +- ...New-MgSolutionBackupRestoreSharePointProtectionPolicy.md | 4 ++-- .../Search-MgSolutionBackupRestorePoint.md | 4 ++-- .../Update-MgSolutionBackupRestore.md | 6 +++--- .../Update-MgSolutionBackupRestoreBrowseSession.md | 2 +- ...pdate-MgSolutionBackupRestoreExchangeProtectionPolicy.md | 4 ++-- .../Update-MgSolutionBackupRestoreExchangeRestoreSession.md | 2 +- ...eExchangeRestoreSessionGranularMailboxRestoreArtifact.md | 2 +- ...SolutionBackupRestoreOneDriveForBusinessBrowseSession.md | 2 +- ...utionBackupRestoreOneDriveForBusinessProtectionPolicy.md | 4 ++-- .../Update-MgSolutionBackupRestoreProtectionPolicy.md | 2 +- ...Update-MgSolutionBackupRestoreSharePointBrowseSession.md | 2 +- ...ate-MgSolutionBackupRestoreSharePointProtectionPolicy.md | 4 ++-- 23 files changed, 36 insertions(+), 36 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md index dc4ad38625ccf..af546f5779d2d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md @@ -73,7 +73,7 @@ HelpMessage: '' ### -AppOwnerTenantId -. + ```yaml Type: System.String @@ -94,7 +94,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md index c26ef065cb837..27d9c5c6a51c3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md @@ -100,7 +100,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -171,7 +171,7 @@ HelpMessage: '' ### -EffectiveDateTime -. + ```yaml Type: System.DateTime diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md index c44ea1932eac1..586a8a4d9f7b4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md @@ -122,7 +122,7 @@ HelpMessage: '' ### -Body -. + To construct, see NOTES section for BODY properties and create a hash table. ```yaml @@ -144,7 +144,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -187,7 +187,7 @@ HelpMessage: '' ### -BrowseLocationItemKey -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md index 91f8e5e1743e0..7df22939c792b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md @@ -418,7 +418,7 @@ HelpMessage: '' ### -RestorePointId -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md index 3b5d53fa2dbe6..b53adb9699c19 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md @@ -299,7 +299,7 @@ HelpMessage: '' ### -IsEnabled -. + ```yaml Type: System.Management.Automation.SwitchParameter @@ -407,7 +407,7 @@ HelpMessage: '' ### -MailboxProtectionUnitsBulkAdditionJobs -. + To construct, see NOTES section for MAILBOXPROTECTIONUNITSBULKADDITIONJOBS properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md index e93f75d8ea041..5dc9179ead42a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md @@ -233,7 +233,7 @@ HelpMessage: '' ### -GranularMailboxRestoreArtifacts -. + To construct, see NOTES section for GRANULARMAILBOXRESTOREARTIFACTS properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index e690a69964586..a7fcdf5cfc521 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md @@ -603,7 +603,7 @@ HelpMessage: '' ### -SearchResponseId -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md index 73589c9d3569f..07bd72a51bd29 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -448,7 +448,7 @@ HelpMessage: '' ### -RestorePointId -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md index 8d99737116c77..159a54e43bd2f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md @@ -259,7 +259,7 @@ HelpMessage: '' ### -DriveProtectionUnitsBulkAdditionJobs -. + To construct, see NOTES section for DRIVEPROTECTIONUNITSBULKADDITIONJOBS properties and create a hash table. ```yaml @@ -366,7 +366,7 @@ HelpMessage: '' ### -IsEnabled -. + ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md index 941f82b6db7cd..bdb89483db1fe 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md @@ -291,7 +291,7 @@ HelpMessage: '' ### -IsEnabled -. + ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md index 5d3180320036d..0e3292d1b90a8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -427,7 +427,7 @@ HelpMessage: '' ### -RestorePointId -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md index 3fd064ade497d..cabbb683cd78b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md @@ -299,7 +299,7 @@ HelpMessage: '' ### -IsEnabled -. + ```yaml Type: System.Management.Automation.SwitchParameter @@ -536,7 +536,7 @@ HelpMessage: '' ### -SiteProtectionUnitsBulkAdditionJobs -. + To construct, see NOTES section for SITEPROTECTIONUNITSBULKADDITIONJOBS properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md index 5871444996a61..2474d36a065fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md @@ -105,7 +105,7 @@ HelpMessage: '' ### -BodyParameter -. + To construct, see NOTES section for BODYPARAMETER properties and create a hash table. ```yaml @@ -255,7 +255,7 @@ HelpMessage: '' ### -ProtectionUnitIds -. + ```yaml Type: System.String[] diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md index a4222e67d11c4..47cb93c0790cd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md @@ -226,7 +226,7 @@ HelpMessage: '' ### -DriveProtectionUnitsBulkAdditionJobs -. + To construct, see NOTES section for DRIVEPROTECTIONUNITSBULKADDITIONJOBS properties and create a hash table. ```yaml @@ -421,7 +421,7 @@ HelpMessage: '' ### -MailboxProtectionUnitsBulkAdditionJobs -. + To construct, see NOTES section for MAILBOXPROTECTIONUNITSBULKADDITIONJOBS properties and create a hash table. ```yaml @@ -836,7 +836,7 @@ HelpMessage: '' ### -SiteProtectionUnitsBulkAdditionJobs -. + To construct, see NOTES section for SITEPROTECTIONUNITSBULKADDITIONJOBS properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md index b372a05e2c116..51207f2e23e25 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md @@ -544,7 +544,7 @@ HelpMessage: '' ### -RestorePointId -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md index b9d4e98865830..15cd3b2ce17d1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md @@ -417,7 +417,7 @@ HelpMessage: '' ### -IsEnabled -. + ```yaml Type: System.Management.Automation.SwitchParameter @@ -555,7 +555,7 @@ HelpMessage: '' ### -MailboxProtectionUnitsBulkAdditionJobs -. + To construct, see NOTES section for MAILBOXPROTECTIONUNITSBULKADDITIONJOBS properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md index f487c6e5e096d..d4f8b2d0e092b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md @@ -324,7 +324,7 @@ HelpMessage: '' ### -GranularMailboxRestoreArtifacts -. + To construct, see NOTES section for GRANULARMAILBOXRESTOREARTIFACTS properties and create a hash table. ```yaml diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index df65c0a1062d9..0efac5ef9b2dc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md @@ -631,7 +631,7 @@ HelpMessage: '' ### -SearchResponseId -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md index 5351b37b28655..2d2d86bde1837 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -574,7 +574,7 @@ HelpMessage: '' ### -RestorePointId -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md index c02431dfde770..8a09e57b75821 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md @@ -331,7 +331,7 @@ HelpMessage: '' ### -DriveProtectionUnitsBulkAdditionJobs -. + To construct, see NOTES section for DRIVEPROTECTIONUNITSBULKADDITIONJOBS properties and create a hash table. ```yaml @@ -478,7 +478,7 @@ HelpMessage: '' ### -IsEnabled -. + ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md index 41a164926e920..b79986ba203d8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md @@ -382,7 +382,7 @@ HelpMessage: '' ### -IsEnabled -. + ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md index d95adb6a5dab3..1bf7dd8ad2067 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -517,7 +517,7 @@ HelpMessage: '' ### -RestorePointId -. + ```yaml Type: System.String diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md index cb7941482e952..be0f9247cbcff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md @@ -390,7 +390,7 @@ HelpMessage: '' ### -IsEnabled -. + ```yaml Type: System.Management.Automation.SwitchParameter @@ -696,7 +696,7 @@ HelpMessage: '' ### -SiteProtectionUnitsBulkAdditionJobs -. + To construct, see NOTES section for SITEPROTECTIONUNITSBULKADDITIONJOBS properties and create a hash table. ```yaml From 1a0e7bb13421dc57c34818355f17b4015616dbde Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Fri, 31 Jul 2026 18:51:35 +0000 Subject: [PATCH 16/16] Corrected related link to conform to the new platyps rules --- .../Enable-MgSolutionBackupRestore.md | 4 ++-- .../Get-MgSolutionBackupRestore.md | 4 ++-- .../Get-MgSolutionBackupRestoreBrowseSession.md | 4 ++-- .../Get-MgSolutionBackupRestoreBrowseSessionCount.md | 2 +- .../Get-MgSolutionBackupRestoreDriveInclusionRule.md | 2 +- .../Get-MgSolutionBackupRestoreDriveInclusionRuleCount.md | 2 +- .../Get-MgSolutionBackupRestoreDriveProtectionUnit.md | 2 +- ...lutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md | 2 +- ...nBackupRestoreDriveProtectionUnitBulkAdditionJobCount.md | 2 +- .../Get-MgSolutionBackupRestoreDriveProtectionUnitCount.md | 2 +- .../Get-MgSolutionBackupRestoreExchangeProtectionPolicy.md | 2 +- ...-MgSolutionBackupRestoreExchangeProtectionPolicyCount.md | 2 +- ...upRestoreExchangeProtectionPolicyMailboxInclusionRule.md | 6 +++--- ...toreExchangeProtectionPolicyMailboxInclusionRuleCount.md | 2 +- ...pRestoreExchangeProtectionPolicyMailboxProtectionUnit.md | 2 +- ...eProtectionPolicyMailboxProtectionUnitBulkAdditionJob.md | 6 +++--- ...ectionPolicyMailboxProtectionUnitBulkAdditionJobCount.md | 2 +- ...oreExchangeProtectionPolicyMailboxProtectionUnitCount.md | 2 +- .../Get-MgSolutionBackupRestoreExchangeRestoreSession.md | 2 +- ...et-MgSolutionBackupRestoreExchangeRestoreSessionCount.md | 2 +- ...eExchangeRestoreSessionGranularMailboxRestoreArtifact.md | 2 +- ...angeRestoreSessionGranularMailboxRestoreArtifactCount.md | 2 +- ...toreSessionGranularMailboxRestoreArtifactRestorePoint.md | 2 +- ...upRestoreExchangeRestoreSessionMailboxRestoreArtifact.md | 4 ++-- ...storeSessionMailboxRestoreArtifactBulkAdditionRequest.md | 6 +++--- ...SessionMailboxRestoreArtifactBulkAdditionRequestCount.md | 2 +- ...toreExchangeRestoreSessionMailboxRestoreArtifactCount.md | 2 +- ...hangeRestoreSessionMailboxRestoreArtifactRestorePoint.md | 2 +- .../Get-MgSolutionBackupRestoreMailboxInclusionRule.md | 2 +- .../Get-MgSolutionBackupRestoreMailboxInclusionRuleCount.md | 2 +- .../Get-MgSolutionBackupRestoreMailboxProtectionUnit.md | 2 +- ...tionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md | 2 +- ...ackupRestoreMailboxProtectionUnitBulkAdditionJobCount.md | 2 +- ...Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md | 2 +- ...SolutionBackupRestoreOneDriveForBusinessBrowseSession.md | 6 +++--- ...ionBackupRestoreOneDriveForBusinessBrowseSessionCount.md | 2 +- ...utionBackupRestoreOneDriveForBusinessProtectionPolicy.md | 2 +- ...BackupRestoreOneDriveForBusinessProtectionPolicyCount.md | 2 +- ...OneDriveForBusinessProtectionPolicyDriveInclusionRule.md | 6 +++--- ...iveForBusinessProtectionPolicyDriveInclusionRuleCount.md | 2 +- ...neDriveForBusinessProtectionPolicyDriveProtectionUnit.md | 4 ++-- ...essProtectionPolicyDriveProtectionUnitBulkAdditionJob.md | 6 +++--- ...otectionPolicyDriveProtectionUnitBulkAdditionJobCount.md | 2 +- ...veForBusinessProtectionPolicyDriveProtectionUnitCount.md | 2 +- ...olutionBackupRestoreOneDriveForBusinessRestoreSession.md | 2 +- ...onBackupRestoreOneDriveForBusinessRestoreSessionCount.md | 2 +- ...OneDriveForBusinessRestoreSessionDriveRestoreArtifact.md | 4 ++-- ...RestoreSessionDriveRestoreArtifactBulkAdditionRequest.md | 6 +++--- ...reSessionDriveRestoreArtifactBulkAdditionRequestCount.md | 2 +- ...iveForBusinessRestoreSessionDriveRestoreArtifactCount.md | 2 +- ...usinessRestoreSessionDriveRestoreArtifactRestorePoint.md | 2 +- ...ForBusinessRestoreSessionGranularDriveRestoreArtifact.md | 4 ++-- ...sinessRestoreSessionGranularDriveRestoreArtifactCount.md | 2 +- .../Get-MgSolutionBackupRestorePoint.md | 4 ++-- .../Get-MgSolutionBackupRestorePointCount.md | 2 +- .../Get-MgSolutionBackupRestorePointProtectionUnit.md | 2 +- .../Get-MgSolutionBackupRestoreProtectionPolicy.md | 2 +- .../Get-MgSolutionBackupRestoreProtectionPolicyCount.md | 2 +- .../Get-MgSolutionBackupRestoreProtectionUnit.md | 4 ++-- ...utionBackupRestoreProtectionUnitAsDriveProtectionUnit.md | 4 ++-- ...ionBackupRestoreProtectionUnitAsMailboxProtectionUnit.md | 4 ++-- ...lutionBackupRestoreProtectionUnitAsSiteProtectionUnit.md | 4 ++-- .../Get-MgSolutionBackupRestoreProtectionUnitCount.md | 2 +- ...BackupRestoreProtectionUnitCountAsDriveProtectionUnit.md | 2 +- ...ckupRestoreProtectionUnitCountAsMailboxProtectionUnit.md | 2 +- ...nBackupRestoreProtectionUnitCountAsSiteProtectionUnit.md | 2 +- .../Get-MgSolutionBackupRestoreServiceApp.md | 6 +++--- .../Get-MgSolutionBackupRestoreServiceAppCount.md | 2 +- .../Get-MgSolutionBackupRestoreSession.md | 6 +++--- .../Get-MgSolutionBackupRestoreSessionCount.md | 2 +- .../Get-MgSolutionBackupRestoreSharePointBrowseSession.md | 6 +++--- ...t-MgSolutionBackupRestoreSharePointBrowseSessionCount.md | 2 +- ...Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md | 2 +- ...gSolutionBackupRestoreSharePointProtectionPolicyCount.md | 2 +- ...kupRestoreSharePointProtectionPolicySiteInclusionRule.md | 6 +++--- ...storeSharePointProtectionPolicySiteInclusionRuleCount.md | 2 +- ...upRestoreSharePointProtectionPolicySiteProtectionUnit.md | 4 ++-- ...ointProtectionPolicySiteProtectionUnitBulkAdditionJob.md | 6 +++--- ...rotectionPolicySiteProtectionUnitBulkAdditionJobCount.md | 2 +- ...toreSharePointProtectionPolicySiteProtectionUnitCount.md | 2 +- .../Get-MgSolutionBackupRestoreSharePointRestoreSession.md | 2 +- ...-MgSolutionBackupRestoreSharePointRestoreSessionCount.md | 2 +- ...reSharePointRestoreSessionGranularSiteRestoreArtifact.md | 4 ++-- ...rePointRestoreSessionGranularSiteRestoreArtifactCount.md | 2 +- ...kupRestoreSharePointRestoreSessionSiteRestoreArtifact.md | 4 ++-- ...tRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md | 6 +++--- ...oreSessionSiteRestoreArtifactBulkAdditionRequestCount.md | 2 +- ...storeSharePointRestoreSessionSiteRestoreArtifactCount.md | 2 +- ...arePointRestoreSessionSiteRestoreArtifactRestorePoint.md | 2 +- .../Get-MgSolutionBackupRestoreSiteInclusionRule.md | 2 +- .../Get-MgSolutionBackupRestoreSiteInclusionRuleCount.md | 2 +- .../Get-MgSolutionBackupRestoreSiteProtectionUnit.md | 2 +- ...olutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md | 2 +- ...onBackupRestoreSiteProtectionUnitBulkAdditionJobCount.md | 2 +- .../Get-MgSolutionBackupRestoreSiteProtectionUnitCount.md | 2 +- .../Initialize-MgSolutionBackupRestoreProtectionPolicy.md | 4 ++-- .../Initialize-MgSolutionBackupRestoreServiceApp.md | 4 ++-- .../Initialize-MgSolutionBackupRestoreSession.md | 4 ++-- .../Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md | 2 +- ...oke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md | 4 ++-- .../Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md | 4 ++-- .../Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md | 4 ++-- .../New-MgSolutionBackupRestoreBrowseSession.md | 2 +- .../New-MgSolutionBackupRestoreDriveInclusionRule.md | 2 +- .../New-MgSolutionBackupRestoreDriveProtectionUnit.md | 2 +- ...lutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md | 2 +- .../New-MgSolutionBackupRestoreExchangeProtectionPolicy.md | 4 ++-- .../New-MgSolutionBackupRestoreExchangeRestoreSession.md | 4 ++-- ...eExchangeRestoreSessionGranularMailboxRestoreArtifact.md | 2 +- ...upRestoreExchangeRestoreSessionMailboxRestoreArtifact.md | 2 +- ...storeSessionMailboxRestoreArtifactBulkAdditionRequest.md | 4 ++-- .../New-MgSolutionBackupRestoreMailboxInclusionRule.md | 2 +- .../New-MgSolutionBackupRestoreMailboxProtectionUnit.md | 2 +- ...tionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md | 2 +- ...SolutionBackupRestoreOneDriveForBusinessBrowseSession.md | 4 ++-- ...utionBackupRestoreOneDriveForBusinessProtectionPolicy.md | 4 ++-- ...olutionBackupRestoreOneDriveForBusinessRestoreSession.md | 4 ++-- ...OneDriveForBusinessRestoreSessionDriveRestoreArtifact.md | 2 +- ...RestoreSessionDriveRestoreArtifactBulkAdditionRequest.md | 4 ++-- ...ForBusinessRestoreSessionGranularDriveRestoreArtifact.md | 2 +- .../New-MgSolutionBackupRestorePoint.md | 2 +- .../New-MgSolutionBackupRestoreProtectionPolicy.md | 2 +- .../New-MgSolutionBackupRestoreServiceApp.md | 4 ++-- .../New-MgSolutionBackupRestoreSession.md | 2 +- .../New-MgSolutionBackupRestoreSharePointBrowseSession.md | 4 ++-- ...New-MgSolutionBackupRestoreSharePointProtectionPolicy.md | 4 ++-- .../New-MgSolutionBackupRestoreSharePointRestoreSession.md | 4 ++-- ...reSharePointRestoreSessionGranularSiteRestoreArtifact.md | 2 +- ...kupRestoreSharePointRestoreSessionSiteRestoreArtifact.md | 2 +- ...tRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md | 4 ++-- .../New-MgSolutionBackupRestoreSiteInclusionRule.md | 2 +- .../New-MgSolutionBackupRestoreSiteProtectionUnit.md | 2 +- ...olutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md | 2 +- .../Remove-MgSolutionBackupRestore.md | 2 +- .../Remove-MgSolutionBackupRestoreBrowseSession.md | 2 +- .../Remove-MgSolutionBackupRestoreDriveInclusionRule.md | 2 +- .../Remove-MgSolutionBackupRestoreDriveProtectionUnit.md | 2 +- ...lutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md | 2 +- ...emove-MgSolutionBackupRestoreExchangeProtectionPolicy.md | 2 +- .../Remove-MgSolutionBackupRestoreExchangeRestoreSession.md | 2 +- ...eExchangeRestoreSessionGranularMailboxRestoreArtifact.md | 2 +- ...upRestoreExchangeRestoreSessionMailboxRestoreArtifact.md | 2 +- ...storeSessionMailboxRestoreArtifactBulkAdditionRequest.md | 4 ++-- .../Remove-MgSolutionBackupRestoreMailboxInclusionRule.md | 2 +- .../Remove-MgSolutionBackupRestoreMailboxProtectionUnit.md | 2 +- ...tionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md | 2 +- ...SolutionBackupRestoreOneDriveForBusinessBrowseSession.md | 2 +- ...utionBackupRestoreOneDriveForBusinessProtectionPolicy.md | 2 +- ...olutionBackupRestoreOneDriveForBusinessRestoreSession.md | 2 +- ...OneDriveForBusinessRestoreSessionDriveRestoreArtifact.md | 2 +- ...RestoreSessionDriveRestoreArtifactBulkAdditionRequest.md | 4 ++-- ...ForBusinessRestoreSessionGranularDriveRestoreArtifact.md | 2 +- .../Remove-MgSolutionBackupRestorePoint.md | 2 +- .../Remove-MgSolutionBackupRestoreProtectionPolicy.md | 4 ++-- .../Remove-MgSolutionBackupRestoreServiceApp.md | 4 ++-- .../Remove-MgSolutionBackupRestoreSession.md | 4 ++-- ...Remove-MgSolutionBackupRestoreSharePointBrowseSession.md | 2 +- ...ove-MgSolutionBackupRestoreSharePointProtectionPolicy.md | 2 +- ...emove-MgSolutionBackupRestoreSharePointRestoreSession.md | 2 +- ...reSharePointRestoreSessionGranularSiteRestoreArtifact.md | 2 +- ...kupRestoreSharePointRestoreSessionSiteRestoreArtifact.md | 2 +- ...tRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md | 4 ++-- .../Remove-MgSolutionBackupRestoreSiteInclusionRule.md | 2 +- .../Remove-MgSolutionBackupRestoreSiteProtectionUnit.md | 2 +- ...olutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md | 2 +- .../Search-MgSolutionBackupRestorePoint.md | 4 ++-- .../Stop-MgSolutionBackupRestoreProtectionUnitOffboard.md | 4 ++-- .../Update-MgSolutionBackupRestore.md | 2 +- .../Update-MgSolutionBackupRestoreBrowseSession.md | 2 +- .../Update-MgSolutionBackupRestoreDriveInclusionRule.md | 2 +- .../Update-MgSolutionBackupRestoreDriveProtectionUnit.md | 2 +- ...lutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md | 2 +- ...pdate-MgSolutionBackupRestoreExchangeProtectionPolicy.md | 4 ++-- .../Update-MgSolutionBackupRestoreExchangeRestoreSession.md | 4 ++-- ...eExchangeRestoreSessionGranularMailboxRestoreArtifact.md | 2 +- ...upRestoreExchangeRestoreSessionMailboxRestoreArtifact.md | 2 +- ...storeSessionMailboxRestoreArtifactBulkAdditionRequest.md | 2 +- .../Update-MgSolutionBackupRestoreMailboxInclusionRule.md | 2 +- .../Update-MgSolutionBackupRestoreMailboxProtectionUnit.md | 2 +- ...tionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md | 2 +- ...SolutionBackupRestoreOneDriveForBusinessBrowseSession.md | 2 +- ...utionBackupRestoreOneDriveForBusinessProtectionPolicy.md | 4 ++-- ...olutionBackupRestoreOneDriveForBusinessRestoreSession.md | 4 ++-- ...OneDriveForBusinessRestoreSessionDriveRestoreArtifact.md | 2 +- ...RestoreSessionDriveRestoreArtifactBulkAdditionRequest.md | 2 +- ...ForBusinessRestoreSessionGranularDriveRestoreArtifact.md | 2 +- .../Update-MgSolutionBackupRestorePoint.md | 2 +- .../Update-MgSolutionBackupRestoreProtectionPolicy.md | 2 +- .../Update-MgSolutionBackupRestoreServiceApp.md | 2 +- .../Update-MgSolutionBackupRestoreSession.md | 2 +- ...Update-MgSolutionBackupRestoreSharePointBrowseSession.md | 2 +- ...ate-MgSolutionBackupRestoreSharePointProtectionPolicy.md | 4 ++-- ...pdate-MgSolutionBackupRestoreSharePointRestoreSession.md | 4 ++-- ...reSharePointRestoreSessionGranularSiteRestoreArtifact.md | 2 +- ...kupRestoreSharePointRestoreSessionSiteRestoreArtifact.md | 2 +- ...tRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md | 2 +- .../Update-MgSolutionBackupRestoreSiteInclusionRule.md | 2 +- .../Update-MgSolutionBackupRestoreSiteProtectionUnit.md | 2 +- ...olutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md | 2 +- 199 files changed, 272 insertions(+), 272 deletions(-) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md index af546f5779d2d..2c26b8a3f85b4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md @@ -364,8 +364,8 @@ BODYPARAMETER ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorebrowsesession) -- [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-browsesessions?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreBrowseSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorebrowsesession) +- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-list-browsesessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md index 1a52b75d930c5..fea112625f195 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md @@ -282,7 +282,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorebrowsesessioncount) +- [Get-MgSolutionBackupRestoreBrowseSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorebrowsesessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRule.md index 53b269009d8ca..a253013c3736b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRule.md @@ -558,7 +558,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveinclusionrule) +- [Get-MgSolutionBackupRestoreDriveInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRuleCount.md index 9f259a49f517f..5f07ea4c41b3a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveInclusionRuleCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveinclusionrulecount) +- [Get-MgSolutionBackupRestoreDriveInclusionRuleCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveinclusionrulecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnit.md index fa74bf1d75ee9..2004338ef8eba 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnit.md @@ -558,7 +558,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunit) +- [Get-MgSolutionBackupRestoreDriveProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md index 0d92f1079c7f4..a211d618b03da 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md @@ -558,7 +558,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob) +- [Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.md index b2e72b74e39e2..1f6c4458983ed 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunitbulkadditionjobcount) +- [Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunitbulkadditionjobcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitCount.md index 52c1ad0052be9..290f50da96a26 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreDriveProtectionUnitCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunitcount) +- [Get-MgSolutionBackupRestoreDriveProtectionUnitCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoredriveprotectionunitcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicy.md index eedce2cdf688c..3155306c11ad3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicy.md @@ -558,7 +558,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicy) +- [Get-MgSolutionBackupRestoreExchangeProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount.md index 50c00ff3885d3..a447a18f9df7a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicycount) +- [Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md index cb77f2cc49792..8d062a89f0fb7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule.md @@ -602,9 +602,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxinclusionrule) -- [](https://learn.microsoft.com/graph/api/protectionrulebase-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/exchangeprotectionpolicy-list-mailboxinclusionrules?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxinclusionrule) +- [Graph API Reference](https://learn.microsoft.com/graph/api/protectionrulebase-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/exchangeprotectionpolicy-list-mailboxinclusionrules?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md index c94b7d95f4fa8..187a3d7803c66 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxinclusionrulecount) +- [Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxinclusionrulecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit.md index df6c7ead386a1..38aefd7fb4f34 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit.md @@ -586,7 +586,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunit) +- [Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.md index b186f0d110122..1d59e96ef414c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob.md @@ -587,9 +587,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunitbulkadditionjob) -- [](https://learn.microsoft.com/graph/api/mailboxprotectionunitsbulkadditionjobs-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/exchangeprotectionpolicy-list-mailboxprotectionunitsbulkadditionjobs?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunitbulkadditionjob) +- [Graph API Reference](https://learn.microsoft.com/graph/api/mailboxprotectionunitsbulkadditionjobs-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/exchangeprotectionpolicy-list-mailboxprotectionunitsbulkadditionjobs?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount.md index 2f01d21d36fd7..1a9505aa0b244 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount.md @@ -373,7 +373,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunitbulkadditionjobcount) +- [Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAdditionJobCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunitbulkadditionjobcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount.md index 94024980cd89f..60a6d6ada0bc6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount.md @@ -373,7 +373,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunitcount) +- [Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangeprotectionpolicymailboxprotectionunitcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSession.md index 6cb55796cb735..0bb8f11118d7c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSession.md @@ -558,7 +558,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresession) +- [Get-MgSolutionBackupRestoreExchangeRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionCount.md index 9da849a0566c7..e1cb1b56cb798 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessioncount) +- [Get-MgSolutionBackupRestoreExchangeRestoreSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index 9656bbe0a6cbf..813ccba0ac35d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md @@ -587,7 +587,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact) +- [Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount.md index 9c3e6bff1e5e5..d917a3b629bcc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount.md @@ -373,7 +373,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifactcount) +- [Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifactcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint.md index 21956d8bee53d..be76948aa5c8d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint.md @@ -397,7 +397,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifactrestorepoint) +- [Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactRestorePoint](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifactrestorepoint) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md index a5fdd0495f0a1..78a586b24f3ed 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md @@ -586,8 +586,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact) -- [](https://learn.microsoft.com/graph/api/exchangerestoresession-list-mailboxrestoreartifacts?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact) +- [Graph API Reference](https://learn.microsoft.com/graph/api/exchangerestoresession-list-mailboxrestoreartifacts?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md index a69396d0e02f6..8fbcc1e36bc63 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md @@ -587,9 +587,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest) -- [](https://learn.microsoft.com/graph/api/mailboxrestoreartifactsbulkadditionrequest-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/exchangerestoresession-list-mailboxrestoreartifactsbulkadditionrequests?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest) +- [Graph API Reference](https://learn.microsoft.com/graph/api/mailboxrestoreartifactsbulkadditionrequest-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/exchangerestoresession-list-mailboxrestoreartifactsbulkadditionrequests?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount.md index 1a05a28aa639d..a21456f9841e4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount.md @@ -373,7 +373,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequestcount) +- [Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequestCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequestcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount.md index 4cff6776d7b1e..8451f6d940992 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount.md @@ -373,7 +373,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactcount) +- [Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.md index d2a558d6438c6..d632907a784f1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint.md @@ -396,7 +396,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactrestorepoint) +- [Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePoint](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactrestorepoint) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRule.md index a6f37867c256c..39a1371f55ee5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRule.md @@ -558,7 +558,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxinclusionrule) +- [Get-MgSolutionBackupRestoreMailboxInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRuleCount.md index 842f98ee71402..fd4f6af155d19 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxInclusionRuleCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxinclusionrulecount) +- [Get-MgSolutionBackupRestoreMailboxInclusionRuleCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxinclusionrulecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnit.md index db957aef08ef7..344b3e6fe5e7a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnit.md @@ -558,7 +558,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunit) +- [Get-MgSolutionBackupRestoreMailboxProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md index f67a703f6306b..9c65ed14c323c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md @@ -558,7 +558,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob) +- [Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.md index 087b3845b7a6d..95943fc6cc4b8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjobcount) +- [Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjobcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md index 09458b0619551..63c4fd30d626e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreMailboxProtectionUnitCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunitcount) +- [Get-MgSolutionBackupRestoreMailboxProtectionUnitCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoremailboxprotectionunitcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md index 8982f8929fc6f..194c6adddac6f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -566,9 +566,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessbrowsesession) -- [](https://learn.microsoft.com/graph/api/onedriveforbusinessbrowsesession-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-onedriveforbusinessbrowsesessions?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessbrowsesession) +- [Graph API Reference](https://learn.microsoft.com/graph/api/onedriveforbusinessbrowsesession-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-list-onedriveforbusinessbrowsesessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md index cf18c7ffb0d57..090ad6b9f772b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md @@ -282,7 +282,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessbrowsesessioncount) +- [Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessbrowsesessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md index 2ca66d32e5ece..ccc5d09647a86 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md @@ -558,7 +558,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy) +- [Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount.md index a9b6724c323dc..4ca13223b112a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicycount) +- [Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md index 5292ffe2e7982..d22ef41c415d5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule.md @@ -603,9 +603,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveinclusionrule) -- [](https://learn.microsoft.com/graph/api/protectionrulebase-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/onedriveforbusinessprotectionpolicy-list-driveinclusionrules?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveinclusionrule) +- [Graph API Reference](https://learn.microsoft.com/graph/api/protectionrulebase-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/onedriveforbusinessprotectionpolicy-list-driveinclusionrules?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md index 7178bd3a3ed7d..87308b94f8426 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveinclusionrulecount) +- [Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRuleCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveinclusionrulecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit.md index aac8a2417cd69..d607120fa0159 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit.md @@ -587,8 +587,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunit) -- [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-driveprotectionunits?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunit) +- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-list-driveprotectionunits?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.md index 4f7cfded56df1..8f76546217be1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob.md @@ -587,9 +587,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunitbulkadditionjob) -- [](https://learn.microsoft.com/graph/api/driveprotectionunitsbulkadditionjobs-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/onedriveforbusinessprotectionpolicy-list-driveprotectionunitsbulkadditionjobs?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunitbulkadditionjob) +- [Graph API Reference](https://learn.microsoft.com/graph/api/driveprotectionunitsbulkadditionjobs-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/onedriveforbusinessprotectionpolicy-list-driveprotectionunitsbulkadditionjobs?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.md index a06e45cc04251..aa6816218ff45 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount.md @@ -373,7 +373,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunitbulkadditionjobcount) +- [Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitBulkAdditionJobCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunitbulkadditionjobcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount.md index 9074f75ef22e2..b6e2b3a821399 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount.md @@ -373,7 +373,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunitcount) +- [Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUnitCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicydriveprotectionunitcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md index ab5306b3927a1..92e7a248bf72d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md @@ -558,7 +558,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresession) +- [Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount.md index 4b9df080e837d..ed56e1f054af9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessioncount) +- [Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md index 8e216ce6814fa..031667895d653 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md @@ -587,8 +587,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact) -- [](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-list-driverestoreartifacts?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact) +- [Graph API Reference](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-list-driverestoreartifacts?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md index fab69454f19b7..2855eea18870e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md @@ -587,9 +587,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest) -- [](https://learn.microsoft.com/graph/api/driverestoreartifactsbulkadditionrequest-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-list-driverestoreartifactsbulkadditionrequests?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest) +- [Graph API Reference](https://learn.microsoft.com/graph/api/driverestoreartifactsbulkadditionrequest-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-list-driverestoreartifactsbulkadditionrequests?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount.md index 58a9250fa8dd3..961435b0b16ff 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount.md @@ -373,7 +373,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequestcount) +- [Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequestCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequestcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount.md index 8b36a060d3a4e..60be0f0769846 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount.md @@ -373,7 +373,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactcount) +- [Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.md index eed525e2058da..18cefe03ea2fa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint.md @@ -397,7 +397,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactrestorepoint) +- [Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactRestorePoint](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactrestorepoint) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md index 3fb094eb848fe..501b23d1e425d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -587,8 +587,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifact) -- [](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-list-granulardriverestoreartifacts?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifact) +- [Graph API Reference](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-list-granulardriverestoreartifacts?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md index bc2e8e4e6a428..7449f1c364b5b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifactcount) +- [Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifactcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePoint.md index af1aa98d1834e..5ca2c5081abc1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePoint.md @@ -556,8 +556,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorepoint) -- [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-restorepoints?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestorePoint](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorepoint) +- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-list-restorepoints?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md index 34bf41ed63894..46d7886abbae0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointCount.md @@ -282,7 +282,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorepointcount) +- [Get-MgSolutionBackupRestorePointCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorepointcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointProtectionUnit.md index 3cc3b77b797f4..daf09e0bb3457 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestorePointProtectionUnit.md @@ -374,7 +374,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorepointprotectionunit) +- [Get-MgSolutionBackupRestorePointProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestorepointprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicy.md index adc5a732335e5..78211c624658a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicy.md @@ -558,7 +558,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionpolicy) +- [Get-MgSolutionBackupRestoreProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionpolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicyCount.md index e48da26c046be..71ef62e46e1c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionPolicyCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionpolicycount) +- [Get-MgSolutionBackupRestoreProtectionPolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionpolicycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnit.md index 1f62694d28f0f..f4724222ac7cd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnit.md @@ -558,8 +558,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunit) -- [](https://learn.microsoft.com/graph/api/protectionunitbase-get?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunit) +- [Graph API Reference](https://learn.microsoft.com/graph/api/protectionunitbase-get?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.md index 0dd0f1f38c0b8..c8042dc849e37 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit.md @@ -558,8 +558,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitasdriveprotectionunit) -- [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-driveprotectionunits?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitasdriveprotectionunit) +- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-list-driveprotectionunits?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.md index e54a3519330a8..ce579dfb7447b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit.md @@ -558,8 +558,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitasmailboxprotectionunit) -- [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-mailboxprotectionunits?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitasmailboxprotectionunit) +- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-list-mailboxprotectionunits?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.md index 862b0be30db95..c94b9258d87d2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit.md @@ -558,8 +558,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitassiteprotectionunit) -- [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-siteprotectionunits?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitassiteprotectionunit) +- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-list-siteprotectionunits?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCount.md index 934cb4ff35486..3a18d44a9fab4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcount) +- [Get-MgSolutionBackupRestoreProtectionUnitCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit.md index ca1aa9166255b..e8c82157f59a7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcountasdriveprotectionunit) +- [Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcountasdriveprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit.md index a2ae83f3307aa..c53e00ba74ff8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcountasmailboxprotectionunit) +- [Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcountasmailboxprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit.md index a294a5832e360..b747f123d9568 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcountassiteprotectionunit) +- [Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreprotectionunitcountassiteprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceApp.md index f1218c9f41e72..516b288ecabcd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceApp.md @@ -557,9 +557,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreserviceapp) -- [](https://learn.microsoft.com/graph/api/serviceapp-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-serviceapps?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreServiceApp](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreserviceapp) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceapp-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-list-serviceapps?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceAppCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceAppCount.md index 92964398a4bca..62093a88ebc54 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceAppCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreServiceAppCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreserviceappcount) +- [Get-MgSolutionBackupRestoreServiceAppCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoreserviceappcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSession.md index 19cc4a1ac7598..18907c751a24d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSession.md @@ -557,9 +557,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresession) -- [](https://learn.microsoft.com/graph/api/restoresessionbase-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-restoresessions?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresession) +- [Graph API Reference](https://learn.microsoft.com/graph/api/restoresessionbase-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-list-restoresessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md index 15bfe5a401c52..7de44550ea014 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSessionCount.md @@ -282,7 +282,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresessioncount) +- [Get-MgSolutionBackupRestoreSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md index 61a5a13050960..12a69c8729039 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -566,9 +566,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointbrowsesession) -- [](https://learn.microsoft.com/graph/api/sharepointbrowsesession-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-sharepointbrowsesessions?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreSharePointBrowseSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointbrowsesession) +- [Graph API Reference](https://learn.microsoft.com/graph/api/sharepointbrowsesession-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-list-sharepointbrowsesessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md index db5d9a51a0053..67966dbbd895c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md @@ -282,7 +282,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointbrowsesessioncount) +- [Get-MgSolutionBackupRestoreSharePointBrowseSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointbrowsesessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md index 0e44cd92c5712..7d72366f7d583 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicy.md @@ -558,7 +558,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicy) +- [Get-MgSolutionBackupRestoreSharePointProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount.md index 9646075a80a06..36e909ff94cfa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicycount) +- [Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicycount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md index c215da4f8edc8..f3d3623e29dad 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule.md @@ -602,9 +602,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteinclusionrule) -- [](https://learn.microsoft.com/graph/api/protectionrulebase-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/sharepointprotectionpolicy-list-siteinclusionrules?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteinclusionrule) +- [Graph API Reference](https://learn.microsoft.com/graph/api/protectionrulebase-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/sharepointprotectionpolicy-list-siteinclusionrules?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md index dabb614d27646..1594901e9b90e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteinclusionrulecount) +- [Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteinclusionrulecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit.md index 3f817abc9d3e7..a8631564031b5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit.md @@ -586,8 +586,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunit) -- [](https://learn.microsoft.com/graph/api/backuprestoreroot-list-siteprotectionunits?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunit) +- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-list-siteprotectionunits?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob.md index 535c8e8bc2038..682628ea21d24 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob.md @@ -587,9 +587,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunitbulkadditionjob) -- [](https://learn.microsoft.com/graph/api/siteprotectionunitsbulkadditionjobs-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/sharepointprotectionpolicy-list-siteprotectionunitsbulkadditionjobs?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunitbulkadditionjob) +- [Graph API Reference](https://learn.microsoft.com/graph/api/siteprotectionunitsbulkadditionjobs-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/sharepointprotectionpolicy-list-siteprotectionunitsbulkadditionjobs?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount.md index 4c9ed3afb74ed..81fc0e8d4bfa9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount.md @@ -373,7 +373,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunitbulkadditionjobcount) +- [Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAdditionJobCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunitbulkadditionjobcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount.md index d33988235d7a5..b4ec0773f8af8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount.md @@ -373,7 +373,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunitcount) +- [Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointprotectionpolicysiteprotectionunitcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSession.md index 4848c1538eafa..856cc063bbc6b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSession.md @@ -558,7 +558,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresession) +- [Get-MgSolutionBackupRestoreSharePointRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionCount.md index 6d0edf5ff14d9..9bff546a28d40 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessioncount) +- [Get-MgSolutionBackupRestoreSharePointRestoreSessionCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessioncount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md index bc1a53cad7305..07794a6f3529d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -587,8 +587,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifact) -- [](https://learn.microsoft.com/graph/api/sharepointrestoresession-list-granularsiterestoreartifacts?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifact) +- [Graph API Reference](https://learn.microsoft.com/graph/api/sharepointrestoresession-list-granularsiterestoreartifacts?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md index e7092d1db4151..5c233629aad8b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md @@ -381,7 +381,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifactcount) +- [Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifactcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md index 6bcd2b480fa45..f9172581fdce7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md @@ -586,8 +586,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact) -- [](https://learn.microsoft.com/graph/api/sharepointrestoresession-list-siterestoreartifacts?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact) +- [Graph API Reference](https://learn.microsoft.com/graph/api/sharepointrestoresession-list-siterestoreartifacts?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md index 0d532925f8a8d..a6e958a0cbefc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md @@ -587,9 +587,9 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest) -- [](https://learn.microsoft.com/graph/api/siterestoreartifactsbulkadditionrequest-get?view=graph-rest-1.0) -- [](https://learn.microsoft.com/graph/api/sharepointrestoresession-list-siterestoreartifactsbulkadditionrequests?view=graph-rest-1.0) +- [Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest) +- [Graph API Reference](https://learn.microsoft.com/graph/api/siterestoreartifactsbulkadditionrequest-get?view=graph-rest-1.0) +- [Graph API Reference](https://learn.microsoft.com/graph/api/sharepointrestoresession-list-siterestoreartifactsbulkadditionrequests?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount.md index 0e5936ecf8080..ab7e014ed9aa4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount.md @@ -373,7 +373,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequestcount) +- [Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequestCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequestcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount.md index 2aa087ec85685..dcde6c875913c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount.md @@ -373,7 +373,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactcount) +- [Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint.md index c8e3b5eb3f077..2fb09928989c6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint.md @@ -396,7 +396,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactrestorepoint) +- [Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoint](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactrestorepoint) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRule.md index 4f472a2a896f5..ecb31c0192364 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRule.md @@ -558,7 +558,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteinclusionrule) +- [Get-MgSolutionBackupRestoreSiteInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRuleCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRuleCount.md index 3ce8d0090ba96..2c2baae500a62 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRuleCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteInclusionRuleCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteinclusionrulecount) +- [Get-MgSolutionBackupRestoreSiteInclusionRuleCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteinclusionrulecount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnit.md index 61ba3cc0d390f..4d7c18a1cf738 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnit.md @@ -558,7 +558,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunit) +- [Get-MgSolutionBackupRestoreSiteProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md index 017db87002560..615e9ec7b681a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md @@ -558,7 +558,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob) +- [Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.md index 330b7c746e5a2..506e5d063c58b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunitbulkadditionjobcount) +- [Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunitbulkadditionjobcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitCount.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitCount.md index afb7a63766b3c..87eef8097b4d0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitCount.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSiteProtectionUnitCount.md @@ -274,7 +274,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunitcount) +- [Get-MgSolutionBackupRestoreSiteProtectionUnitCount](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/get-mgsolutionbackuprestoresiteprotectionunitcount) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreProtectionPolicy.md index 9214f3aef6a75..c10192fe7b5cb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreProtectionPolicy.md @@ -377,8 +377,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/initialize-mgsolutionbackuprestoreprotectionpolicy) -- [](https://learn.microsoft.com/graph/api/protectionpolicybase-activate?view=graph-rest-1.0) +- [Initialize-MgSolutionBackupRestoreProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/initialize-mgsolutionbackuprestoreprotectionpolicy) +- [Graph API Reference](https://learn.microsoft.com/graph/api/protectionpolicybase-activate?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md index 27d9c5c6a51c3..d9bf31e659f31 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreServiceApp.md @@ -497,8 +497,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/initialize-mgsolutionbackuprestoreserviceapp) -- [](https://learn.microsoft.com/graph/api/serviceapp-activate?view=graph-rest-1.0) +- [Initialize-MgSolutionBackupRestoreServiceApp](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/initialize-mgsolutionbackuprestoreserviceapp) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceapp-activate?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreSession.md index 88fc81489d59f..319056274ae71 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Initialize-MgSolutionBackupRestoreSession.md @@ -375,8 +375,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/initialize-mgsolutionbackuprestoresession) -- [](https://learn.microsoft.com/graph/api/restoresessionbase-activate?view=graph-rest-1.0) +- [Initialize-MgSolutionBackupRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/initialize-mgsolutionbackuprestoresession) +- [Graph API Reference](https://learn.microsoft.com/graph/api/restoresessionbase-activate?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md index 586a8a4d9f7b4..510d835c8f04b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md @@ -781,7 +781,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgbrowsesolutionbackuprestorebrowsesession) +- [Invoke-MgBrowseSolutionBackupRestoreBrowseSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgbrowsesolutionbackuprestorebrowsesession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md index f27a6b6e8cfc7..7f6d8f526f2e1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy.md @@ -381,8 +381,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgdeactivatesolutionbackuprestoreprotectionpolicy) -- [](https://learn.microsoft.com/graph/api/protectionpolicybase-deactivate?view=graph-rest-1.0) +- [Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgdeactivatesolutionbackuprestoreprotectionpolicy) +- [Graph API Reference](https://learn.microsoft.com/graph/api/protectionpolicybase-deactivate?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md index 80970ea100fa7..312e4f228a7fc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgDeactivateSolutionBackupRestoreServiceApp.md @@ -373,8 +373,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgdeactivatesolutionbackuprestoreserviceapp) -- [](https://learn.microsoft.com/graph/api/serviceapp-deactivate?view=graph-rest-1.0) +- [Invoke-MgDeactivateSolutionBackupRestoreServiceApp](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgdeactivatesolutionbackuprestoreserviceapp) +- [Graph API Reference](https://learn.microsoft.com/graph/api/serviceapp-deactivate?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md index 9070a10056f4d..c12c67b19be1a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgOffboardSolutionBackupRestoreProtectionUnit.md @@ -373,8 +373,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgoffboardsolutionbackuprestoreprotectionunit) -- [](https://learn.microsoft.com/graph/api/protectionunitbase-offboard?view=graph-rest-1.0) +- [Invoke-MgOffboardSolutionBackupRestoreProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/invoke-mgoffboardsolutionbackuprestoreprotectionunit) +- [Graph API Reference](https://learn.microsoft.com/graph/api/protectionunitbase-offboard?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md index 7df22939c792b..6633da572ea8a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md @@ -557,7 +557,7 @@ ERROR ``: publicError ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestorebrowsesession) +- [New-MgSolutionBackupRestoreBrowseSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestorebrowsesession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveInclusionRule.md index f1108d47013ac..8512a9b65d6b6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveInclusionRule.md @@ -610,7 +610,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoredriveinclusionrule) +- [New-MgSolutionBackupRestoreDriveInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoredriveinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnit.md index 57caad7f16633..22f60113c8cdc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnit.md @@ -665,7 +665,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoredriveprotectionunit) +- [New-MgSolutionBackupRestoreDriveProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoredriveprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md index 30db5b989c372..0265cff2046f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md @@ -632,7 +632,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob) +- [New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md index b53adb9699c19..37958da837c79 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeProtectionPolicy.md @@ -867,8 +867,8 @@ RETENTIONSETTINGS : Contains the retention se ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangeprotectionpolicy) -- [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-exchangeprotectionpolicies?view=graph-rest-1.0) +- [New-MgSolutionBackupRestoreExchangeProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangeprotectionpolicy) +- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-post-exchangeprotectionpolicies?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md index 5dc9179ead42a..0fb37021fca1f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md @@ -957,8 +957,8 @@ RESTORESESSIONARTIFACTCOUNT ``: rest ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresession) -- [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-exchangerestoresessions?view=graph-rest-1.0) +- [New-MgSolutionBackupRestoreExchangeRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresession) +- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-post-exchangerestoresessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index a7fcdf5cfc521..2319ff356fe13 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md @@ -906,7 +906,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact) +- [New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md index c0f4add5c1f76..35404ffa762c7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md @@ -845,7 +845,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact) +- [New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md index dc8a8c9f192e8..f083aa8fb4e68 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md @@ -984,8 +984,8 @@ PROTECTIONTIMEPERIOD ``: timePeriod ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest) -- [](https://learn.microsoft.com/graph/api/exchangerestoresession-post-mailboxrestoreartifactsbulkadditionrequests?view=graph-rest-1.0) +- [New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest) +- [Graph API Reference](https://learn.microsoft.com/graph/api/exchangerestoresession-post-mailboxrestoreartifactsbulkadditionrequests?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxInclusionRule.md index 645f712c06fe1..0cb7651a3a3f2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxInclusionRule.md @@ -612,7 +612,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoremailboxinclusionrule) +- [New-MgSolutionBackupRestoreMailboxInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoremailboxinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnit.md index 56d093dfbd845..4c7a703562377 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnit.md @@ -666,7 +666,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoremailboxprotectionunit) +- [New-MgSolutionBackupRestoreMailboxProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoremailboxprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md index 27f9f73979710..78e8289c83a8f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md @@ -632,7 +632,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob) +- [New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md index 07bd72a51bd29..b3ca686b25795 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -588,8 +588,8 @@ ERROR ``: publicError ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessbrowsesession) -- [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-onedriveforbusinessbrowsesessions?view=graph-rest-1.0) +- [New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessbrowsesession) +- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-post-onedriveforbusinessbrowsesessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md index 159a54e43bd2f..8eefdb1b36c5d 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md @@ -868,8 +868,8 @@ RETENTIONSETTINGS : Contains the retention se ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy) -- [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-onedriveforbusinessprotectionpolicies?view=graph-rest-1.0) +- [New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy) +- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-post-onedriveforbusinessprotectionpolicies?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md index 4b610cabe6046..d173d9986f19b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md @@ -913,8 +913,8 @@ RESTORESESSIONARTIFACTCOUNT ``: rest ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresession) -- [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-onedriveforbusinessrestoresessions?view=graph-rest-1.0) +- [New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresession) +- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-post-onedriveforbusinessrestoresessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md index 1ab74c485ea68..87cc53278b49b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md @@ -817,7 +817,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact) +- [New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md index 425123621296d..5fcb054feeadc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md @@ -984,8 +984,8 @@ PROTECTIONTIMEPERIOD ``: timePeriod ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest) -- [](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-post-driverestoreartifactsbulkadditionrequests?view=graph-rest-1.0) +- [New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest) +- [Graph API Reference](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-post-driverestoreartifactsbulkadditionrequests?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md index 13db0e8e6b56f..d6ef3ed434664 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -788,7 +788,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifact) +- [New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestorePoint.md index ef1dcb3bbf542..467cafb640c37 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestorePoint.md @@ -540,7 +540,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestorepoint) +- [New-MgSolutionBackupRestorePoint](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestorepoint) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md index bdb89483db1fe..61fdc675cc4a4 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreProtectionPolicy.md @@ -621,7 +621,7 @@ RETENTIONSETTINGS : Contains the retention se ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreprotectionpolicy) +- [New-MgSolutionBackupRestoreProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreprotectionpolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreServiceApp.md index efb350e6f6528..edc1324f4df31 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreServiceApp.md @@ -529,8 +529,8 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreserviceapp) -- [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-serviceapps?view=graph-rest-1.0) +- [New-MgSolutionBackupRestoreServiceApp](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoreserviceapp) +- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-post-serviceapps?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSession.md index 485478c8abd7f..72ac494489506 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSession.md @@ -645,7 +645,7 @@ RESTORESESSIONARTIFACTCOUNT ``: rest ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresession) +- [New-MgSolutionBackupRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md index 0e3292d1b90a8..0c7fdb9a068d3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -588,8 +588,8 @@ ERROR ``: publicError ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointbrowsesession) -- [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-sharepointbrowsesessions?view=graph-rest-1.0) +- [New-MgSolutionBackupRestoreSharePointBrowseSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointbrowsesession) +- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-post-sharepointbrowsesessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md index cabbb683cd78b..f713e48431beb 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointProtectionPolicy.md @@ -867,8 +867,8 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointprotectionpolicy) -- [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-sharepointprotectionpolicies?view=graph-rest-1.0) +- [New-MgSolutionBackupRestoreSharePointProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointprotectionpolicy) +- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-post-sharepointprotectionpolicies?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSession.md index 2a453ea536afc..ff4a50801ad3b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSession.md @@ -913,8 +913,8 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresession) -- [](https://learn.microsoft.com/graph/api/backuprestoreroot-post-sharepointrestoresessions?view=graph-rest-1.0) +- [New-MgSolutionBackupRestoreSharePointRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresession) +- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-post-sharepointrestoresessions?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md index a1e0950243214..6086788d7e71c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -787,7 +787,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifact) +- [New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md index 15c263d6571e7..4557c600bb061 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md @@ -817,7 +817,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact) +- [New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md index 339ff20b838ed..9c0150da08def 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md @@ -982,8 +982,8 @@ PROTECTIONTIMEPERIOD ``: timePeriod ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest) -- [](https://learn.microsoft.com/graph/api/sharepointrestoresession-post-siterestoreartifactsbulkadditionrequests?view=graph-rest-1.0) +- [New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest) +- [Graph API Reference](https://learn.microsoft.com/graph/api/sharepointrestoresession-post-siterestoreartifactsbulkadditionrequests?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteInclusionRule.md index e75f371e8867e..67b5bbbb4cf46 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteInclusionRule.md @@ -611,7 +611,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresiteinclusionrule) +- [New-MgSolutionBackupRestoreSiteInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresiteinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnit.md index 06b09f38562bb..2578c72c9389c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnit.md @@ -665,7 +665,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresiteprotectionunit) +- [New-MgSolutionBackupRestoreSiteProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresiteprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md index e21835e91accb..43025d762ca97 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md @@ -632,7 +632,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob) +- [New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/new-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestore.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestore.md index a07be51130580..9840543e5a992 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestore.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestore.md @@ -318,7 +318,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestore) +- [Remove-MgSolutionBackupRestore](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestore) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreBrowseSession.md index e41e9f25896df..6b562b020333a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreBrowseSession.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestorebrowsesession) +- [Remove-MgSolutionBackupRestoreBrowseSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestorebrowsesession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveInclusionRule.md index 11b71cec5cbbc..0648773d6790c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveInclusionRule.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoredriveinclusionrule) +- [Remove-MgSolutionBackupRestoreDriveInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoredriveinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnit.md index fa2ffcb5a6f81..6be2b2fce71b2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnit.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoredriveprotectionunit) +- [Remove-MgSolutionBackupRestoreDriveProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoredriveprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md index 5acb553ee0d64..3c23c5c75fafc 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md @@ -417,7 +417,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob) +- [Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeProtectionPolicy.md index 6f87c79fc4d97..e9cd6b9cd122b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeProtectionPolicy.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangeprotectionpolicy) +- [Remove-MgSolutionBackupRestoreExchangeProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangeprotectionpolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSession.md index 97b5e15b7996e..0700807275956 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSession.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresession) +- [Remove-MgSolutionBackupRestoreExchangeRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index 7a64481a85628..050afcbc92313 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md @@ -438,7 +438,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact) +- [Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md index 2a3f435a7abce..a949844f8b246 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md @@ -438,7 +438,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact) +- [Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md index 50dae03ac4790..6500a5dc527e7 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md @@ -438,8 +438,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest) -- [](https://learn.microsoft.com/graph/api/mailboxrestoreartifactsbulkadditionrequest-delete?view=graph-rest-1.0) +- [Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest) +- [Graph API Reference](https://learn.microsoft.com/graph/api/mailboxrestoreartifactsbulkadditionrequest-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxInclusionRule.md index 3802b7eaaccd6..51b8db00ff7f1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxInclusionRule.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoremailboxinclusionrule) +- [Remove-MgSolutionBackupRestoreMailboxInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoremailboxinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnit.md index 5a9ad3e93ff11..dbc2e73cb0532 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnit.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoremailboxprotectionunit) +- [Remove-MgSolutionBackupRestoreMailboxProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoremailboxprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md index 657e3123c020a..6ae40bbcf91d1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md @@ -417,7 +417,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob) +- [Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md index c202071807a8e..b609a4ac74c76 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -416,7 +416,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessbrowsesession) +- [Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessbrowsesession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md index 423279a67178e..e8436a2226c3b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md @@ -417,7 +417,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy) +- [Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md index 5f390b7868664..04d53fa10b0ed 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md @@ -417,7 +417,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresession) +- [Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md index 2978ed1c1b480..2b909b39eeb5b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md @@ -438,7 +438,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact) +- [Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md index a41e0488911f3..3f6f95be9d164 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md @@ -438,8 +438,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest) -- [](https://learn.microsoft.com/graph/api/driverestoreartifactsbulkadditionrequest-delete?view=graph-rest-1.0) +- [Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest) +- [Graph API Reference](https://learn.microsoft.com/graph/api/driverestoreartifactsbulkadditionrequest-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md index 12d49f5ebacb3..1974b9c0b5d5b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -438,7 +438,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifact) +- [Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestorePoint.md index fe49a75dd3fa5..498243983372a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestorePoint.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestorepoint) +- [Remove-MgSolutionBackupRestorePoint](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestorepoint) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreProtectionPolicy.md index 6f73d102d35b0..aa1a30aa1599c 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreProtectionPolicy.md @@ -423,8 +423,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreprotectionpolicy) -- [](https://learn.microsoft.com/graph/api/protectionpolicybase-delete?view=graph-rest-1.0) +- [Remove-MgSolutionBackupRestoreProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreprotectionpolicy) +- [Graph API Reference](https://learn.microsoft.com/graph/api/protectionpolicybase-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreServiceApp.md index 93f5156d61758..3d97816f64ab2 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreServiceApp.md @@ -417,8 +417,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreserviceapp) -- [](https://learn.microsoft.com/graph/api/backuprestoreroot-delete-serviceapps?view=graph-rest-1.0) +- [Remove-MgSolutionBackupRestoreServiceApp](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoreserviceapp) +- [Graph API Reference](https://learn.microsoft.com/graph/api/backuprestoreroot-delete-serviceapps?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSession.md index 78e6d6c6fdba6..8378d44a5b986 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSession.md @@ -415,8 +415,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresession) -- [](https://learn.microsoft.com/graph/api/restoresessionbase-delete?view=graph-rest-1.0) +- [Remove-MgSolutionBackupRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresession) +- [Graph API Reference](https://learn.microsoft.com/graph/api/restoresessionbase-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointBrowseSession.md index 9d3e00e7fbe7d..103c3c9c59711 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointbrowsesession) +- [Remove-MgSolutionBackupRestoreSharePointBrowseSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointbrowsesession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointProtectionPolicy.md index 1b96cfd547b00..ef8968f2ec925 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointProtectionPolicy.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointprotectionpolicy) +- [Remove-MgSolutionBackupRestoreSharePointProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointprotectionpolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSession.md index 2f6a4e0daedc2..3418a63eafc1f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSession.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresession) +- [Remove-MgSolutionBackupRestoreSharePointRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md index 916cc4dcdab3d..6579966330949 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -438,7 +438,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifact) +- [Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md index 6b2093496e337..91644a49fd292 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md @@ -438,7 +438,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact) +- [Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md index 74f84c82a592e..8d83ee62f677f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md @@ -438,8 +438,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest) -- [](https://learn.microsoft.com/graph/api/siterestoreartifactsbulkadditionrequest-delete?view=graph-rest-1.0) +- [Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest) +- [Graph API Reference](https://learn.microsoft.com/graph/api/siterestoreartifactsbulkadditionrequest-delete?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteInclusionRule.md index 276047df92971..cc583daad6ca1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteInclusionRule.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresiteinclusionrule) +- [Remove-MgSolutionBackupRestoreSiteInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresiteinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnit.md index 19702383b743f..67da5dd62781e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnit.md @@ -415,7 +415,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresiteprotectionunit) +- [Remove-MgSolutionBackupRestoreSiteProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresiteprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md index 22d0943dd86aa..4c513b5945a23 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md @@ -417,7 +417,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob) +- [Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/remove-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md index 2474d36a065fc..8fedbeca292d0 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Search-MgSolutionBackupRestorePoint.md @@ -480,8 +480,8 @@ PROTECTIONTIMEPERIOD ``: timePeriod ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/search-mgsolutionbackuprestorepoint) -- [](https://learn.microsoft.com/graph/api/restorepoint-search?view=graph-rest-1.0) +- [Search-MgSolutionBackupRestorePoint](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/search-mgsolutionbackuprestorepoint) +- [Graph API Reference](https://learn.microsoft.com/graph/api/restorepoint-search?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Stop-MgSolutionBackupRestoreProtectionUnitOffboard.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Stop-MgSolutionBackupRestoreProtectionUnitOffboard.md index e1b794ec12a16..af50352cdcc81 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Stop-MgSolutionBackupRestoreProtectionUnitOffboard.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Stop-MgSolutionBackupRestoreProtectionUnitOffboard.md @@ -373,8 +373,8 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/stop-mgsolutionbackuprestoreprotectionunitoffboard) -- [](https://learn.microsoft.com/graph/api/protectionunitbase-canceloffboard?view=graph-rest-1.0) +- [Stop-MgSolutionBackupRestoreProtectionUnitOffboard](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/stop-mgsolutionbackuprestoreprotectionunitoffboard) +- [Graph API Reference](https://learn.microsoft.com/graph/api/protectionunitbase-canceloffboard?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md index 47cb93c0790cd..f7377afa666dd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestore.md @@ -2623,7 +2623,7 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestore) +- [Update-MgSolutionBackupRestore](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestore) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md index 51207f2e23e25..adcae799ace7e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md @@ -734,7 +734,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestorebrowsesession) +- [Update-MgSolutionBackupRestoreBrowseSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestorebrowsesession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveInclusionRule.md index 5c2f5e1296c01..ed932f23ffd13 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveInclusionRule.md @@ -795,7 +795,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoredriveinclusionrule) +- [Update-MgSolutionBackupRestoreDriveInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoredriveinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnit.md index d7a4e5e270589..6b810abd90581 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnit.md @@ -863,7 +863,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoredriveprotectionunit) +- [Update-MgSolutionBackupRestoreDriveProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoredriveprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md index 3115c39d0053f..aec1ca066be0e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob.md @@ -825,7 +825,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob) +- [Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoredriveprotectionunitbulkadditionjob) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md index 15cd3b2ce17d1..a55e1547ee8c1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeProtectionPolicy.md @@ -1078,8 +1078,8 @@ RETENTIONSETTINGS : Contains the retention se ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangeprotectionpolicy) -- [](https://learn.microsoft.com/graph/api/exchangeprotectionpolicy-update?view=graph-rest-1.0) +- [Update-MgSolutionBackupRestoreExchangeProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangeprotectionpolicy) +- [Graph API Reference](https://learn.microsoft.com/graph/api/exchangeprotectionpolicy-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md index d4f8b2d0e092b..0c4caf2f041fa 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSession.md @@ -1169,8 +1169,8 @@ RESTORESESSIONARTIFACTCOUNT ``: rest ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresession) -- [](https://learn.microsoft.com/graph/api/exchangerestoresession-update?view=graph-rest-1.0) +- [Update-MgSolutionBackupRestoreExchangeRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresession) +- [Graph API Reference](https://learn.microsoft.com/graph/api/exchangerestoresession-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index 0efac5ef9b2dc..a4f23365ea035 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md @@ -934,7 +934,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact) +- [Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresessiongranularmailboxrestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md index c7712911b3a27..efc0fc0d813e1 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md @@ -874,7 +874,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact) +- [Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md index 5cf4acde83105..312d05f19231e 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest.md @@ -1009,7 +1009,7 @@ PROTECTIONTIMEPERIOD ``: timePeriod ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest) +- [Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreexchangerestoresessionmailboxrestoreartifactbulkadditionrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxInclusionRule.md index de3f95e23dbad..240850236d4d5 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxInclusionRule.md @@ -795,7 +795,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoremailboxinclusionrule) +- [Update-MgSolutionBackupRestoreMailboxInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoremailboxinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnit.md index 38869f66d297a..763992e10645b 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnit.md @@ -863,7 +863,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoremailboxprotectionunit) +- [Update-MgSolutionBackupRestoreMailboxProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoremailboxprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md index 4895ef2b212d5..dc0ce66655f49 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md @@ -825,7 +825,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob) +- [Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoremailboxprotectionunitbulkadditionjob) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md index 2d2d86bde1837..dcb685dda44a8 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -765,7 +765,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessbrowsesession) +- [Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessbrowsesession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md index 8a09e57b75821..8a43c78c32f7f 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy.md @@ -1082,8 +1082,8 @@ RETENTIONSETTINGS : Contains the retention se ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy) -- [](https://learn.microsoft.com/graph/api/onedriveforbusinessprotectionpolicy-update?view=graph-rest-1.0) +- [Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessprotectionpolicy) +- [Graph API Reference](https://learn.microsoft.com/graph/api/onedriveforbusinessprotectionpolicy-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md index ed046efe2c85c..e35275426d878 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession.md @@ -1123,8 +1123,8 @@ RESTORESESSIONARTIFACTCOUNT ``: rest ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresession) -- [](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-update?view=graph-rest-1.0) +- [Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresession) +- [Graph API Reference](https://learn.microsoft.com/graph/api/onedriveforbusinessrestoresession-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md index ded64d883b783..f2242f78263af 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact.md @@ -845,7 +845,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact) +- [Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md index 3aaeafbbd6a99..20aea4ddea3c3 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest.md @@ -1009,7 +1009,7 @@ PROTECTIONTIMEPERIOD ``: timePeriod ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest) +- [Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresessiondriverestoreartifactbulkadditionrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md index 41df51046be5b..9d63f2a478330 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -816,7 +816,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifact) +- [Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreonedriveforbusinessrestoresessiongranulardriverestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestorePoint.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestorePoint.md index 0a9b3e65f277e..9d8ba97a8fddf 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestorePoint.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestorePoint.md @@ -699,7 +699,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestorepoint) +- [Update-MgSolutionBackupRestorePoint](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestorepoint) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md index b79986ba203d8..ee3ee19505a95 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md @@ -814,7 +814,7 @@ RETENTIONSETTINGS : Contains the retention se ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreprotectionpolicy) +- [Update-MgSolutionBackupRestoreProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreprotectionpolicy) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreServiceApp.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreServiceApp.md index 329115e83f37a..9e707445ab1ef 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreServiceApp.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreServiceApp.md @@ -700,7 +700,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreserviceapp) +- [Update-MgSolutionBackupRestoreServiceApp](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoreserviceapp) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSession.md index 09b92b37628fa..5e7e33e63c72a 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSession.md @@ -838,7 +838,7 @@ RESTORESESSIONARTIFACTCOUNT ``: rest ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresession) +- [Update-MgSolutionBackupRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md index 1bf7dd8ad2067..c66be2d6d8f13 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -762,7 +762,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointbrowsesession) +- [Update-MgSolutionBackupRestoreSharePointBrowseSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointbrowsesession) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md index be0f9247cbcff..8f967c1e7ef35 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointProtectionPolicy.md @@ -1078,8 +1078,8 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointprotectionpolicy) -- [](https://learn.microsoft.com/graph/api/sharepointprotectionpolicy-update?view=graph-rest-1.0) +- [Update-MgSolutionBackupRestoreSharePointProtectionPolicy](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointprotectionpolicy) +- [Graph API Reference](https://learn.microsoft.com/graph/api/sharepointprotectionpolicy-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSession.md index 0a985edfd7203..3a7c32ede32cd 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSession.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSession.md @@ -1119,8 +1119,8 @@ Read-only. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresession) -- [](https://learn.microsoft.com/graph/api/sharepointrestoresession-update?view=graph-rest-1.0) +- [Update-MgSolutionBackupRestoreSharePointRestoreSession](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresession) +- [Graph API Reference](https://learn.microsoft.com/graph/api/sharepointrestoresession-update?view=graph-rest-1.0) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md index 46ce428818aea..666040693b3c6 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -816,7 +816,7 @@ INPUTOBJECT ``: Identity Parameter ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifact) +- [Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresessiongranularsiterestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md index 7560179639651..a9411785dc622 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact.md @@ -845,7 +845,7 @@ For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact) +- [Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifact) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md index 134d7e3656750..b15121502f022 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest.md @@ -1008,7 +1008,7 @@ PROTECTIONTIMEPERIOD ``: timePeriod ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest) +- [Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditionRequest](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresharepointrestoresessionsiterestoreartifactbulkadditionrequest) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteInclusionRule.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteInclusionRule.md index 551725ed8786b..93cab02663aa9 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteInclusionRule.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteInclusionRule.md @@ -795,7 +795,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresiteinclusionrule) +- [Update-MgSolutionBackupRestoreSiteInclusionRule](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresiteinclusionrule) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnit.md index 7e388e446fa47..b71717dcc63de 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnit.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnit.md @@ -863,7 +863,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresiteprotectionunit) +- [Update-MgSolutionBackupRestoreSiteProtectionUnit](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresiteprotectionunit) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md index 08b5fe8183e33..e5e5cff49f858 100644 --- a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob.md @@ -825,7 +825,7 @@ For example, in the access reviews decisions API, this property might record the ## RELATED LINKS -- [](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob) +- [Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob](https://learn.microsoft.com/powershell/module/microsoft.graph.backuprestore/update-mgsolutionbackuprestoresiteprotectionunitbulkadditionjob)