diff --git a/.gitattributes b/.gitattributes index 9fb85ec49f011..ff067eed84e37 100644 --- a/.gitattributes +++ b/.gitattributes @@ -9,6 +9,10 @@ # Declare files that will always have CRLF line endings on checkout. *.sln text eol=crlf +# Reference docs are generated by PlatyPS/transform scripts on Windows. +# Force LF so regenerated markdown never churns the diff with CRLF endings. +*.md text eol=lf + # Denote all files that are truly binary and should not be modified. *.png binary *.jpg binary \ No newline at end of file diff --git a/azure-pipelines/common-templates/generate-module-docs-steps.yml b/azure-pipelines/common-templates/generate-module-docs-steps.yml new file mode 100644 index 0000000000000..290ee79651d59 --- /dev/null +++ b/azure-pipelines/common-templates/generate-module-docs-steps.yml @@ -0,0 +1,219 @@ +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. +# +# Reusable steps that generate and post-process documentation for a SINGLE module in a SINGLE +# SDK profile, then open a dedicated pull request for it. Designed to run inside an isolated +# per-module stage so an import/assembly conflict for one module can never affect another. +# +# Failure containment: the generate step runs with continueOnError, and every step after it is +# gated on the ModuleGenerated variable (set only when generation actually succeeds). If the +# module fails to import, nothing is deleted, no PR is opened, and the stage is marked +# partially-succeeded WITHOUT failing the overall pipeline or any other module's stage. + +parameters: + - name: Module + type: string + - name: GraphProfileFilter + type: string + - name: BranchPrefix + type: string + default: WeeklyDocs + - name: BaseBranch + type: string + default: main + +steps: + - template: ../update-template.yml + parameters: + InstallProfile: ${{ parameters.GraphProfileFilter }} + Module: ${{ parameters.Module }} + + - task: PowerShell@2 + name: ComputeBranch + displayName: 'Compute branch name' + inputs: + targetType: 'inline' + pwsh: true + script: | + git submodule update --init --recursive + $branch = "{0}-{1}-{2}_{3}" -f "${{ parameters.BranchPrefix }}", "${{ parameters.GraphProfileFilter }}", "${{ parameters.Module }}", (Get-Date -Format yyyyMMddHHmm) + Write-Host "Compute branch: $branch" + Write-Host "##vso[task.setvariable variable=ModuleBranch;isOutput=true]$branch" + + - task: Bash@3 + displayName: 'Create module refresh branch' + inputs: + targetType: inline + script: | + git status + git branch $(ComputeBranch.ModuleBranch) + git checkout $(ComputeBranch.ModuleBranch) + git status + + - task: PowerShell@2 + displayName: 'Create missing external docs folder' + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/CreateExternalDocsFolder.ps1 + + - task: PowerShell@2 + name: GenerateDocs + displayName: 'Generate markdown (${{ parameters.Module }} / ${{ parameters.GraphProfileFilter }})' + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/GenerateMarkDown.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Escape disallowed html tags' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/EscapeDisallowedHtmlTags.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Update metadata header' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/MsSubserviceUpdate.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Generate permissions table' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/GeneratePermissionsTable.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Update Links' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/UpdateLinks.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Repair Examples and Descriptions and Title' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/RepairExamplesDescriptionsAndTitle.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Remove boiler plate code' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/RemoveBoilerPlateCode.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Remove invalid fullstops' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/RemoveInvalidFullStops.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Generate missing docs for aliased cmdlets' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/GenerateAliasedDocs.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: PowerShell@2 + displayName: 'Correct related links section' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + inputs: + targetType: 'filePath' + pwsh: true + filePath: scripts/CorrectRelatedLinks-AllFiles.ps1 + arguments: -GraphProfileFilter "${{ parameters.GraphProfileFilter }}" -ModuleFilter "${{ parameters.Module }}" + + - task: AzureKeyVault@2 + displayName: "Azure Key Vault: Get GitHub App secrets" + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + inputs: + azureSubscription: "Federated AKV Managed Identity Connection" + KeyVaultName: akv-prod-eastus + SecretsFilter: "microsoft-graph-devx-bot-appid,microsoft-graph-devx-bot-privatekey" + + - task: PowerShell@2 + displayName: 'Push ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }}) branch' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + env: + GhAppId: $(microsoft-graph-devx-bot-appid) + GhAppKey: $(microsoft-graph-devx-bot-privatekey) + inputs: + targetType: inline + pwsh: true + script: | + git config --global user.email "GraphTooling@service.microsoft.com" + git config --global user.name "Microsoft Graph DevX Tooling" + git config --system core.longpaths true + # The microsoft-graph-devx-bot GitHub App must have contents:write on this repo. + $token = & "$(Build.SourcesDirectory)/scripts/Generate-Github-Token.ps1" -AppClientId $env:GhAppId -AppPrivateKeyContents $env:GhAppKey -Repository "MicrosoftDocs/microsoftgraph-docs-powershell" + if ([string]::IsNullOrWhiteSpace($token)) { throw "Failed to generate GitHub App installation token." } + # Mask the token so it is never surfaced in pipeline logs. + Write-Host "##vso[task.setsecret]$token" + git status + git add . + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Updating reference docs for ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }})" + } + else { + $global:LASTEXITCODE = 0 + } + git push --set-upstream "https://x-access-token:$token@github.com/MicrosoftDocs/microsoftgraph-docs-powershell.git" $(ComputeBranch.ModuleBranch) + git status + + - task: PowerShell@2 + displayName: 'Create PR for ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }})' + condition: and(succeeded(), eq(variables['ModuleGenerated'], 'true')) + continueOnError: true + env: + GhAppId: $(microsoft-graph-devx-bot-appid) + GhAppKey: $(microsoft-graph-devx-bot-privatekey) + inputs: + targetType: inline + pwsh: true + script: | + $BaseBranchName = "${{ parameters.BaseBranch }}" + $Head = "MicrosoftDocs:$(ComputeBranch.ModuleBranch)" + $Title = "Weekly Docs Refresh: ${{ parameters.Module }} (${{ parameters.GraphProfileFilter }})" + $Body = "This pull request was automatically created by Azure Pipelines for the ``${{ parameters.Module }}`` module (``${{ parameters.GraphProfileFilter }}`` profile). **Important** Check for unexpected deletions or changes in this PR." + # The microsoft-graph-devx-bot GitHub App must have pull_requests:write on this repo. + $env:GITHUB_TOKEN = & "$(Build.SourcesDirectory)/scripts/Generate-Github-Token.ps1" -AppClientId $env:GhAppId -AppPrivateKeyContents $env:GhAppKey -Repository "MicrosoftDocs/microsoftgraph-docs-powershell" + if ([string]::IsNullOrWhiteSpace($env:GITHUB_TOKEN)) { throw "Failed to generate GitHub App installation token." } + # Mask the token so it is never surfaced in pipeline logs. + Write-Host "##vso[task.setsecret]$env:GITHUB_TOKEN" + gh pr create -t $Title -b $Body -B $BaseBranchName -H $Head diff --git a/azure-pipelines/common-templates/module-stages.yml b/azure-pipelines/common-templates/module-stages.yml new file mode 100644 index 0000000000000..f8a1f19f2cfc1 --- /dev/null +++ b/azure-pipelines/common-templates/module-stages.yml @@ -0,0 +1,50 @@ +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. +# +# Emits one fully independent stage per module for a given SDK profile. Each stage runs on its +# own agent (clean assembly-load context), generates + post-processes docs for that single +# module, and opens its own pull request. All stages have dependsOn: [] so they run in +# parallel and one module can never block or fail another. + +parameters: + - name: GraphProfileFilter + type: string + # Short label used in stage names (stage names cannot contain '.'), e.g. "v1" or "beta". + - name: ProfileLabel + type: string + - name: Modules + type: object + default: [] + - name: BranchPrefix + type: string + default: WeeklyDocs + - name: BaseBranch + type: string + default: main + - name: PipelineTimeout + type: number + default: 120 + +stages: + - ${{ each module in parameters.Modules }}: + - stage: "Gen_${{ parameters.ProfileLabel }}_${{ replace(module, '.', '_') }}" + displayName: '${{ parameters.GraphProfileFilter }} - ${{ module }}' + dependsOn: [] + jobs: + - job: GenerateModuleDocs + timeoutInMinutes: ${{ parameters.PipelineTimeout }} + templateContext: + outputs: + - output: pipelineArtifact + displayName: 'Publish missing external docs' + targetPath: missingexternaldocsurl + artifactName: "MissingExternalDocs-${{ parameters.ProfileLabel }}-${{ replace(module, '.', '-') }}" + publishLocation: 'Container' + condition: succeededOrFailed() + steps: + - template: generate-module-docs-steps.yml + parameters: + Module: ${{ module }} + GraphProfileFilter: ${{ parameters.GraphProfileFilter }} + BranchPrefix: ${{ parameters.BranchPrefix }} + BaseBranch: ${{ parameters.BaseBranch }} diff --git a/azure-pipelines/powershell-docs.yml b/azure-pipelines/powershell-docs.yml index c0304ad79ada1..71679bf595944 100644 --- a/azure-pipelines/powershell-docs.yml +++ b/azure-pipelines/powershell-docs.yml @@ -47,156 +47,106 @@ extends: customBuildTags: - ES365AIMigrationTooling stages: - - stage: stage - jobs: - - job: PowerShellDocsUpdate - timeoutInMinutes: ${{ parameters.PipelineTimeout }} - templateContext: - outputs: - - output: pipelineArtifact - displayName: 'Publish Examples to be reviewed as artifact' - targetPath: missingexternaldocsurl - artifactName: 'MissingExternalDocs' - publishLocation: 'Container' - steps: - - template: azure-pipelines/update-template.yml@self - - task : PowerShell@2 - name: "ComputeBranch" - displayName: 'Compute Branch Name' - inputs: - targetType: 'inline' - script: | - git submodule update --init --recursive - $branch = "{0}_{1}" -f "WeeklyReferenceDocsUpdate", (Get-Date -Format yyyyMMddHHmm) - Write-Host "Compute branch: $branch" - Write-Host "##vso[task.setvariable variable=WeeklyReferenceDocsBranch;isOutput=true]$branch" - - task: Bash@3 - displayName: "Create weekly refresh branch" - inputs: - targetType: inline - script: | - git status - git branch $(ComputeBranch.WeeklyReferenceDocsBranch) - git checkout $(ComputeBranch.WeeklyReferenceDocsBranch) - git status - - task: PowerShell@2 - displayName: 'Create missing external docs folder' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/CreateExternalDocsFolder.ps1 - - - task: PowerShell@2 - displayName: 'Generate markdown files from PowerShell help files' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/GenerateMarkDown.ps1 - - task: PowerShell@2 - displayName: 'Escape disallowed html tags' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/EscapeDisallowedHtmlTags.ps1 - - task: PowerShell@2 - displayName: 'Update metadata header' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/MsSubserviceUpdate.ps1 - - task: PowerShell@2 - displayName: 'Generate permissions table' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/GeneratePermissionsTable.ps1 - - task: PowerShell@2 - displayName: 'Update Links' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/UpdateLinks.ps1 - errorActionPreference: 'stop' - - task: PowerShell@2 - displayName: 'Repair Examples and Descriptions and Title' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/RepairExamplesDescriptionsAndTitle.ps1 - - task: PowerShell@2 - displayName: 'Remove boiler plate code' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/RemoveBoilerPlateCode.ps1 - - task: PowerShell@2 - displayName: 'Remove invalid fullstops' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/RemoveInvalidFullStops.ps1 - - task: PowerShell@2 - displayName: 'Generate missing docs for aliased cmdlets' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/GenerateAliasedDocs.ps1 - - task: PowerShell@2 - displayName: 'Correct related links section' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/CorrectRelatedLinks-AllFiles.ps1 - - task: PowerShell@2 - displayName: 'Stabilize ms.date values' - continueOnError: false - inputs: - targetType: 'filePath' - pwsh: true - filePath: scripts/StabilizeMsDate.ps1 - errorActionPreference: 'stop' - - task: AzureKeyVault@2 - displayName: "Azure Key Vault: Get GitHub App secrets" - inputs: - azureSubscription: "Federated AKV Managed Identity Connection" - KeyVaultName: akv-prod-eastus - SecretsFilter: "microsoft-graph-devx-bot-appid,microsoft-graph-devx-bot-privatekey" - - task: PowerShell@2 - displayName: Pushing to github - env: - GhAppId: $(microsoft-graph-devx-bot-appid) - GhAppKey: $(microsoft-graph-devx-bot-privatekey) - inputs: - targetType: inline - pwsh: true - script: | - git config --global user.email "GraphTooling@service.microsoft.com" - git config --global user.name "Microsoft Graph DevX Tooling" - git config --system core.longpaths true - # The microsoft-graph-devx-bot GitHub App must have contents:write on this repo. - $token = & "$(Build.SourcesDirectory)/scripts/Generate-Github-Token.ps1" -AppClientId $env:GhAppId -AppPrivateKeyContents $env:GhAppKey -Repository "MicrosoftDocs/microsoftgraph-docs-powershell" - if ([string]::IsNullOrWhiteSpace($token)) { throw "Failed to generate GitHub App installation token." } - # Mask the token so it is never surfaced in pipeline logs. - Write-Host "##vso[task.setsecret]$token" - git status - git add . - git commit -m "Updating reference docs" - git push --set-upstream "https://x-access-token:$token@github.com/MicrosoftDocs/microsoftgraph-docs-powershell.git" $(ComputeBranch.WeeklyReferenceDocsBranch) - git status - - template: azure-pipelines/common-templates/create-pr.yml@self - parameters: - BaseBranch: "main" - TargetBranch: $(ComputeBranch.WeeklyReferenceDocsBranch) - Title: "Weekly PowerShell Microsoft Graph Reference Docs Refresh" - Body: "This pull request was automatically created by Azure Pipelines. **Important** Check for unexpected deletions or changes in this PR." \ No newline at end of file + - template: common-templates/module-stages.yml@self + parameters: + GraphProfileFilter: "v1.0" + ProfileLabel: "v1" + BranchPrefix: "WeeklyDocs" + BaseBranch: "main" + PipelineTimeout: ${{ parameters.PipelineTimeout }} + Modules: + - Authentication + - Applications + - Bookings + - BusinessScenario + - BackupRestore + - Calendar + - ChangeNotifications + - CloudCommunications + - Compliance + - CrossDeviceExperiences + - Devices.CloudPrint + - Devices.CorporateManagement + - Devices.ServiceAnnouncement + - DeviceManagement + - DeviceManagement.Administration + - DeviceManagement.Enrollment + - DeviceManagement.Actions + - DeviceManagement.Functions + - DirectoryObjects + - Education + - Files + - Financials + - Groups + - Identity.DirectoryManagement + - Identity.Governance + - Identity.SignIns + - Identity.Partner + - Mail + - ManagedTenants + - NetworkAccess + - Notes + - People + - PersonalContacts + - Planner + - Reports + - SchemaExtensions + - Search + - Security + - Sites + - Teams + - Users + - Users.Actions + - Users.Functions + - WindowsUpdates + - template: common-templates/module-stages.yml@self + parameters: + GraphProfileFilter: "beta" + ProfileLabel: "beta" + BranchPrefix: "WeeklyDocs" + BaseBranch: "main" + PipelineTimeout: ${{ parameters.PipelineTimeout }} + Modules: + - Applications + - Bookings + - BusinessScenario + - BackupRestore + - Calendar + - ChangeNotifications + - CloudCommunications + - Compliance + - CrossDeviceExperiences + - Devices.CloudPrint + - Devices.CorporateManagement + - Devices.ServiceAnnouncement + - DeviceManagement + - DeviceManagement.Administration + - DeviceManagement.Enrollment + - DeviceManagement.Actions + - DeviceManagement.Functions + - DirectoryObjects + - Education + - Files + - Financials + - Groups + - Identity.DirectoryManagement + - Identity.Governance + - Identity.SignIns + - Identity.Partner + - Mail + - ManagedTenants + - NetworkAccess + - Notes + - People + - PersonalContacts + - Planner + - Reports + - SchemaExtensions + - Search + - Security + - Sites + - Teams + - Users + - Users.Actions + - Users.Functions + - WindowsUpdates diff --git a/azure-pipelines/update-template.yml b/azure-pipelines/update-template.yml index cd0ec7be60216..8884e887a9aae 100644 --- a/azure-pipelines/update-template.yml +++ b/azure-pipelines/update-template.yml @@ -1,3 +1,16 @@ +parameters: + # Which SDK profile to install for. "both" preserves the original full-run behaviour and + # installs the Microsoft.Graph and Microsoft.Graph.Beta meta modules. + - name: InstallProfile + type: string + default: both + # When set, only the single workload submodule for that module (plus Authentication) is + # installed instead of the whole SDK. This keeps each isolated per-module stage fast and + # guarantees only one workload module is ever present in the session. + - name: Module + type: string + default: "" + steps: - task: PowerShell@2 displayName: Install Required Modules @@ -12,25 +25,44 @@ steps: if (-not (Get-PSRepository -Name PowerShell_V2_Build -ErrorAction SilentlyContinue)) { Register-PSRepository -Name PowerShell_V2_Build -SourceLocation $feedUrl -InstallationPolicy Trusted -Credential $cred } - try{ - # Try to update the V1 module first. - Install-Module Microsoft.Graph.Beta -Repository PowerShell_V2_Build -Credential $cred -Scope AllUsers -AcceptLicense -SkipPublisherCheck -Force -AllowClobber - }catch{ - # If the module is not installed, install it. - echo "Error when installing Beta" + + $installProfile = "${{ parameters.InstallProfile }}" + $module = "${{ parameters.Module }}" + + # Build the list of modules to install. + $toInstall = @() + if ([string]::IsNullOrWhiteSpace($module)) { + # Full-run behaviour: install the meta module(s) for the requested profile(s). + if ($installProfile -ne 'v1.0') { $toInstall += 'Microsoft.Graph.Beta' } + if ($installProfile -ne 'beta') { $toInstall += 'Microsoft.Graph' } } - try{ - # Try to update the beta module first. - Install-Module Microsoft.Graph -Repository PowerShell_V2_Build -Credential $cred -Scope AllUsers -AcceptLicense -SkipPublisherCheck -Force -AllowClobber - }catch{ - # If the module is not installed, install it. - echo "Error when installing V1" + else { + # Isolated per-module run: install only Authentication + the single workload + # submodule for the target profile. + $toInstall += 'Microsoft.Graph.Authentication' + if ($installProfile -eq 'beta') { + $toInstall += "Microsoft.Graph.Beta.$module" + } + else { + $toInstall += "Microsoft.Graph.$module" + } + } + + foreach ($m in $toInstall) { + try { + Install-Module $m -Repository PowerShell_V2_Build -Credential $cred -Scope AllUsers -AcceptLicense -SkipPublisherCheck -Force -AllowClobber + } + catch { + # Do not fail the install step; a missing/failed module surfaces later as a + # fail-safe (no deletion, no PR) in the isolated generation stage. + Write-Host "##vso[task.logissue type=warning]Failed to install $m : $($_.Exception.Message)" + } } - $modules = Get-Module -Name Microsoft.Graph -ListAvailable + $modules = Get-Module -Name Microsoft.Graph* -ListAvailable foreach($r in $modules) { - echo $r.Version + echo "$($r.Name) $($r.Version)" } env: SYSTEM_ACCESSTOKEN: $(System.AccessToken) diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Enable-MgSolutionBackupRestore.md index 27e67275a3a70..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 @@ -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 --- @@ -27,7 +27,6 @@ Enable-MgSolutionBackupRestore [-ResponseHeadersVariable ] [-AdditionalProperties ] [-AppOwnerTenantId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Enable @@ -38,7 +37,6 @@ Enable-MgSolutionBackupRestore [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..32aceb00bcff6 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 --- @@ -26,7 +26,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 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..14ace73b136ba --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSession.md @@ -0,0 +1,584 @@ +--- +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. + +> [!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) + +``` +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. + +## 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 + +- [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 new file mode 100644 index 0000000000000..fea112625f195 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreBrowseSessionCount.md @@ -0,0 +1,308 @@ +--- +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 + +> [!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) + +``` +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 + +**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, | + +## 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 + +- [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 9234638a8bdc1..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreDriveInclusionRule [-ExpandProperty ] [-Pro [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgSolutionBackupRestoreDriveInclusionRule -DriveProtectionRuleId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgSolutionBackupRestoreDriveInclusionRule -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreDriveInclusionRuleCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreDriveProtectionUnit [-ExpandProperty ] [-Pr [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgSolutionBackupRestoreDriveProtectionUnit -DriveProtectionUnitId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgSolutionBackupRestoreDriveProtectionUnit -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob [-ExpandProperty < [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob -DriveProtectionUnitsBulkAdditionJobId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJobCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreDriveProtectionUnitCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicy [-ExpandProperty ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicy -ExchangeProtectionPolicyId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicy -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreExchangeProtectionPolicyCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -33,7 +33,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -43,7 +43,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule -ExchangeProtectionPolicyId -MailboxProtectionRuleId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -53,7 +53,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRule -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount -ExchangeProtectionPolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxInclusionRuleCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit -ExchangeProtectionPolicyId -MailboxProtectionUnitId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +49,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnit -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAddi [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +40,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAddi [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +50,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAddi -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAddi -ExchangeProtectionPolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitBulkAddi -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount -ExchangeProtectionPolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgSolutionBackupRestoreExchangeProtectionPolicyMailboxProtectionUnitCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSession [-ExpandProperty ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSession -ExchangeRestoreSessionId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSession -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreExchangeRestoreSessionCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +40,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +50,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactC -ExchangeRestoreSessionId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactC -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactR [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +38,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifactR -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact -ExchangeRestoreSessionId -MailboxRestoreArtifactId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +49,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAddit [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +40,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAddit [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +50,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAddit -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAddit -ExchangeRestoreSessionId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAddit -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount -ExchangeRestoreSessionId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePo -ExchangeRestoreSessionId -MailboxRestoreArtifactId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactRestorePo -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreMailboxInclusionRule [-ExpandProperty ] [-P [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgSolutionBackupRestoreMailboxInclusionRule -MailboxProtectionRuleId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgSolutionBackupRestoreMailboxInclusionRule -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreMailboxInclusionRuleCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreMailboxProtectionUnit [-ExpandProperty ] [- [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgSolutionBackupRestoreMailboxProtectionUnit -MailboxProtectionUnitId ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgSolutionBackupRestoreMailboxProtectionUnit -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob [-ExpandProperty [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob -MailboxProtectionUnitsBulkAdditionJobId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJobCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreMailboxProtectionUnitCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..194c6adddac6f --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -0,0 +1,594 @@ +--- +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. + +> [!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) + +``` +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. + +**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, | + +## 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 + +- [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 new file mode 100644 index 0000000000000..090ad6b9f772b --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessBrowseSessionCount.md @@ -0,0 +1,308 @@ +--- +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 + +> [!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) + +``` +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 + +**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, | + +## 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 + +- [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 7caee676a2390..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy [-ExpandProperty [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy -OneDriveForBusinessProtectionPolicyId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -33,7 +33,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -44,7 +44,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -54,7 +54,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule -OneDriveForBusinessProtectionPolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveInclusionRule -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUni [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +40,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUni [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +50,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUni -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUni [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +40,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUni [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +50,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUni -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUni -OneDriveForBusinessProtectionPolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUni -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUni -OneDriveForBusinessProtectionPolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicyDriveProtectionUni -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession -OneDriveForBusinessRestoreSessionId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +40,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +50,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +40,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +50,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact -OneDriveForBusinessRestoreSessionId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact -OneDriveForBusinessRestoreSessionId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -38,7 +38,7 @@ Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..501b23d1e425d --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -0,0 +1,614 @@ +--- +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. + +> [!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) + +``` +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. + +## 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 + +- [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 new file mode 100644 index 0000000000000..7449f1c364b5b --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifactCount.md @@ -0,0 +1,407 @@ +--- +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 + +> [!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) + +``` +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 + +**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, | + +## 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 + +- [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 a99940bfb7b89..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestorePoint [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +37,7 @@ Get-MgSolutionBackupRestorePoint [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -46,7 +46,7 @@ Get-MgSolutionBackupRestorePoint -RestorePointId [-ExpandProperty [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestorePointCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,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 +36,7 @@ Get-MgSolutionBackupRestorePointProtectionUnit -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreProtectionPolicy [-ExpandProperty ] [-Prope [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgSolutionBackupRestoreProtectionPolicy -ProtectionPolicyBaseId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgSolutionBackupRestoreProtectionPolicy -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreProtectionPolicyCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreProtectionUnit [-ExpandProperty ] [-Propert [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgSolutionBackupRestoreProtectionUnit -ProtectionUnitBaseId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgSolutionBackupRestoreProtectionUnit -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit [-ExpandProperty [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit -ProtectionUnitBa [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgSolutionBackupRestoreProtectionUnitAsDriveProtectionUnit -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit [-ExpandPropert [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit -ProtectionUnit [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgSolutionBackupRestoreProtectionUnitAsMailboxProtectionUnit -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit [-ExpandProperty < [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit -ProtectionUnitBas [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgSolutionBackupRestoreProtectionUnitAsSiteProtectionUnit -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreProtectionUnitCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreProtectionUnitCountAsDriveProtectionUnit [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreProtectionUnitCountAsMailboxProtectionUnit [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreProtectionUnitCountAsSiteProtectionUnit [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreServiceApp [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +37,7 @@ Get-MgSolutionBackupRestoreServiceApp [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgSolutionBackupRestoreServiceApp -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreServiceAppCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreSession [-ExpandProperty ] [-Property ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -37,7 +37,7 @@ Get-MgSolutionBackupRestoreSession [-ExpandProperty ] [-Property [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -47,7 +47,7 @@ Get-MgSolutionBackupRestoreSession -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreSessionCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..12a69c8729039 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -0,0 +1,594 @@ +--- +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. + +> [!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) + +``` +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. + +**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, | + +## 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 + +- [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 new file mode 100644 index 0000000000000..67966dbbd895c --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointBrowseSessionCount.md @@ -0,0 +1,308 @@ +--- +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 + +> [!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) + +``` +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 + +**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, | + +## 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 + +- [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 a6f4f4f8ef553..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicy [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicy -SharePointProtectionPolic [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicy -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreSharePointProtectionPolicyCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -33,7 +33,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -43,7 +43,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule -SharePointProtectionPolicyId -SiteProtectionRuleId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -53,7 +53,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRule -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount -SharePointProtectionPolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteInclusionRuleCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit -SharePointProtectionPolicyId -SiteProtectionUnitId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +49,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnit -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAddit [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +40,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAddit [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +50,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAddit -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAddit -SharePointProtectionPolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitBulkAddit -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount -SharePointProtectionPolicyId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgSolutionBackupRestoreSharePointProtectionPolicySiteProtectionUnitCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSession [-ExpandProperty ] [-Top ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSession -SharePointRestoreSessionId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSession -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreSharePointRestoreSessionCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..07794a6f3529d --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -0,0 +1,614 @@ +--- +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. + +> [!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) + +``` +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. + +## 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 + +- [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 new file mode 100644 index 0000000000000..5c233629aad8b --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Get-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifactCount.md @@ -0,0 +1,407 @@ +--- +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 + +> [!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) + +``` +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 + +**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, | + +## 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 + +- [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 4080e544b35d1..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -39,7 +39,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact -SharePointRestoreSessionId -SiteRestoreArtifactId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -49,7 +49,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditi [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -40,7 +40,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditi [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -50,7 +50,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditi -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditi -SharePointRestoreSessionId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditi -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount -SharePointRestoreSessionId [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactCount -InputObject [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoi -SharePointRestoreSessionId -SiteRestoreArtifactId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -37,7 +37,7 @@ Get-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactRestorePoi -InputObject [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreSiteInclusionRule [-ExpandProperty ] [-Prop [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgSolutionBackupRestoreSiteInclusionRule -SiteProtectionRuleId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgSolutionBackupRestoreSiteInclusionRule -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreSiteInclusionRuleCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreSiteProtectionUnit [-ExpandProperty ] [-Pro [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgSolutionBackupRestoreSiteProtectionUnit -SiteProtectionUnitId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgSolutionBackupRestoreSiteProtectionUnit -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,7 @@ Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob [-ExpandProperty ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-PageSize ] [-All] - [-CountVariable ] [] + [-CountVariable ] ``` ### Get @@ -38,7 +38,7 @@ Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob -SiteProtectionUnitsBulkAdditionJobId [-ExpandProperty ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ### GetViaIdentity @@ -48,7 +48,7 @@ Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob -InputObject ] [-Property ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [] + [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJobCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -26,7 +26,7 @@ Get the number of the resource Get-MgSolutionBackupRestoreSiteProtectionUnitCount [-Filter ] [-Search ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] - [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ Initialize-MgSolutionBackupRestoreProtectionPolicy -ProtectionPolicyBaseId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ActivateViaIdentity @@ -39,7 +38,6 @@ Initialize-MgSolutionBackupRestoreProtectionPolicy -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Initialize-MgSolutionBackupRestoreServiceApp -ServiceAppId [-EffectiveDateTime ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Activate @@ -39,7 +38,6 @@ Initialize-MgSolutionBackupRestoreServiceApp -ServiceAppId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ActivateViaIdentityExpanded @@ -50,7 +48,6 @@ Initialize-MgSolutionBackupRestoreServiceApp -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ActivateViaIdentity @@ -61,7 +58,6 @@ Initialize-MgSolutionBackupRestoreServiceApp -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Initialize-MgSolutionBackupRestoreSession -RestoreSessionBaseId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### ActivateViaIdentity @@ -38,7 +37,6 @@ Initialize-MgSolutionBackupRestoreSession -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..510d835c8f04b --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Invoke-MgBrowseSolutionBackupRestoreBrowseSession.md @@ -0,0 +1,807 @@ +--- +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 + +> [!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) + +``` +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 + +## 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 + +- [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 bd17766698ecf..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 @@ -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 --- @@ -31,7 +31,6 @@ Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy -ProtectionPolicyBaseId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeactivateViaIdentity @@ -41,7 +40,6 @@ Invoke-MgDeactivateSolutionBackupRestoreProtectionPolicy -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Invoke-MgDeactivateSolutionBackupRestoreServiceApp -ServiceAppId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeactivateViaIdentity @@ -37,7 +36,6 @@ Invoke-MgDeactivateSolutionBackupRestoreServiceApp -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Invoke-MgOffboardSolutionBackupRestoreProtectionUnit -ProtectionUnitBaseId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### OffboardViaIdentity @@ -37,7 +36,6 @@ Invoke-MgOffboardSolutionBackupRestoreProtectionUnit -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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) 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..6633da572ea8a --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreBrowseSession.md @@ -0,0 +1,583 @@ +--- +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 + +> [!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) + +``` +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 + +## 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 + +- [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 fa41fdaac34f6..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 @@ -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 --- @@ -30,7 +30,6 @@ New-MgSolutionBackupRestoreDriveInclusionRule [-ResponseHeadersVariable [-LastModifiedDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -40,7 +39,6 @@ New-MgSolutionBackupRestoreDriveInclusionRule -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,7 @@ New-MgSolutionBackupRestoreDriveProtectionUnit [-ResponseHeadersVariable ] [-PolicyId ] [-ProtectionSources ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +40,6 @@ New-MgSolutionBackupRestoreDriveProtectionUnit -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,7 @@ New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob [-ResponseHeadersV [-LastModifiedBy ] [-LastModifiedDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +41,6 @@ New-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -36,7 +36,7 @@ New-MgSolutionBackupRestoreExchangeProtectionPolicy [-ResponseHeadersVariable ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -46,7 +46,7 @@ New-MgSolutionBackupRestoreExchangeProtectionPolicy -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSession.md index cff1aeb9b0f03..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 @@ -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 --- @@ -35,7 +35,7 @@ New-MgSolutionBackupRestoreExchangeRestoreSession [-ResponseHeadersVariable ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -45,7 +45,7 @@ New-MgSolutionBackupRestoreExchangeRestoreSession -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact.md index aca58fa913797..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 @@ -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 --- @@ -31,7 +31,7 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact [-RestoredItemCount ] [-SearchResponseId ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -42,7 +42,6 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -56,7 +55,7 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact [-RestoredItemCount ] [-SearchResponseId ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -67,7 +66,7 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifact -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md index c5e90a8583399..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 @@ -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 --- @@ -30,7 +30,7 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact [-RestoredFolderId ] [-RestoredItemCount ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +41,6 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -54,7 +53,7 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact [-RestoredFolderId ] [-RestoredItemCount ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -65,7 +64,6 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -34,7 +34,7 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAddit [-ProtectionUnitIds ] [-RestorePointPreference ] [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -46,7 +46,6 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAddit [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -62,7 +61,7 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAddit [-ProtectionUnitIds ] [-RestorePointPreference ] [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -74,7 +73,6 @@ New-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAddit [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,7 @@ New-MgSolutionBackupRestoreMailboxInclusionRule [-ResponseHeadersVariable ] [-MailboxExpression ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +40,7 @@ New-MgSolutionBackupRestoreMailboxInclusionRule -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnit.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnit.md index bfdd7658a0730..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 @@ -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 --- @@ -30,7 +30,7 @@ New-MgSolutionBackupRestoreMailboxProtectionUnit [-ResponseHeadersVariable ] [-PolicyId ] [-ProtectionSources ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +40,7 @@ New-MgSolutionBackupRestoreMailboxProtectionUnit -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob.md index aa3d469303edc..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 @@ -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 --- @@ -30,7 +30,7 @@ New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob [-ResponseHeader [-LastModifiedDateTime ] [-Mailboxes ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +41,6 @@ New-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..b3ca686b25795 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -0,0 +1,615 @@ +--- +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. + +> [!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) + +``` +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. + +**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, | + +## 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 + +- [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 6db9fdb5d355e..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 @@ -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 --- @@ -37,7 +37,7 @@ New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy [-ResponseHeaders [-RetentionSettings ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -48,7 +48,6 @@ New-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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,6 +14,9 @@ title: New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession ## SYNOPSIS 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. > [!NOTE] > To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreOneDriveForBusinessRestoreSession?view=graph-powershell-beta) @@ -35,7 +38,7 @@ New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession [-ResponseHeadersVa [-RestoreSessionArtifactCount ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -46,7 +49,6 @@ New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -57,6 +59,9 @@ 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. ## PARAMETERS @@ -278,7 +283,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 @@ -725,19 +730,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. CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -871,19 +877,20 @@ 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 [(Any) ]: This indicates any property can be added to this object. 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..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 @@ -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 --- @@ -30,7 +30,7 @@ New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-RestoredSiteId ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +41,6 @@ New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -54,7 +53,7 @@ New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-RestoredSiteId ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -65,7 +64,6 @@ New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -34,7 +34,7 @@ New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-RestorePointPreference ] [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -46,7 +46,6 @@ New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -62,7 +61,7 @@ New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-RestorePointPreference ] [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -74,7 +73,6 @@ New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..d6ef3ed434664 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -0,0 +1,814 @@ +--- +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 + +> [!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) + +``` +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 + +## 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 + +- [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 cdd7ccc32a4cd..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 @@ -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 --- @@ -28,7 +28,7 @@ New-MgSolutionBackupRestorePoint [-ResponseHeadersVariable ] [-ProtectionDateTime ] [-ProtectionUnit ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -38,7 +38,6 @@ New-MgSolutionBackupRestorePoint -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,7 @@ New-MgSolutionBackupRestoreProtectionPolicy [-ResponseHeadersVariable ] [-RetentionSettings ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +41,6 @@ New-MgSolutionBackupRestoreProtectionPolicy -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ New-MgSolutionBackupRestoreServiceApp [-ResponseHeadersVariable ] [-LastModifiedDateTime ] [-RegistrationDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -39,7 +39,6 @@ New-MgSolutionBackupRestoreServiceApp -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,7 @@ New-MgSolutionBackupRestoreSession [-ResponseHeadersVariable ] [-RestoreSessionArtifactCount ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +41,6 @@ New-MgSolutionBackupRestoreSession -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..0c7fdb9a068d3 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -0,0 +1,615 @@ +--- +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. + +> [!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) + +``` +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. + +**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, | + +## 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 + +- [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 b5b64ebc500ce..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 @@ -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 --- @@ -36,7 +36,7 @@ New-MgSolutionBackupRestoreSharePointProtectionPolicy [-ResponseHeadersVariable [-SiteProtectionUnitsBulkAdditionJobs ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -46,7 +46,7 @@ New-MgSolutionBackupRestoreSharePointProtectionPolicy -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSession.md index 6f147d0e227c7..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 @@ -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,6 +14,9 @@ title: New-MgSolutionBackupRestoreSharePointRestoreSession ## SYNOPSIS 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. > [!NOTE] > To view the beta release of this cmdlet, view [New-MgBetaSolutionBackupRestoreSharePointRestoreSession](/powershell/module/Microsoft.Graph.Beta.BackupRestore/New-MgBetaSolutionBackupRestoreSharePointRestoreSession?view=graph-powershell-beta) @@ -35,7 +38,7 @@ New-MgSolutionBackupRestoreSharePointRestoreSession [-ResponseHeadersVariable ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -45,7 +48,7 @@ New-MgSolutionBackupRestoreSharePointRestoreSession -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -56,6 +59,9 @@ 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. ## PARAMETERS @@ -233,7 +239,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 @@ -667,19 +673,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 @@ -765,19 +772,20 @@ 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 [(Any) ]: This indicates any property can be added to this object. 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..6086788d7e71c --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/New-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -0,0 +1,813 @@ +--- +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 + +> [!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) + +``` +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 + +## 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 + +- [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 1ebd5d017a098..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 @@ -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 --- @@ -30,7 +30,7 @@ New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact [-RestoredSiteId ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +41,6 @@ New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -54,7 +53,7 @@ New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact [-RestoredSiteId ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### CreateViaIdentity @@ -65,7 +64,6 @@ New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -34,7 +34,6 @@ New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditi [-SiteWebUrls ] [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -46,7 +45,6 @@ New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditi [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentityExpanded @@ -62,7 +60,6 @@ New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditi [-SiteWebUrls ] [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CreateViaIdentity @@ -74,7 +71,6 @@ New-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdditi [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,7 @@ New-MgSolutionBackupRestoreSiteInclusionRule [-ResponseHeadersVariable ] [-LastModifiedDateTime ] [-SiteExpression ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -40,7 +40,6 @@ New-MgSolutionBackupRestoreSiteInclusionRule -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,6 @@ New-MgSolutionBackupRestoreSiteProtectionUnit [-ResponseHeadersVariable [-SiteId ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Create @@ -41,7 +40,6 @@ New-MgSolutionBackupRestoreSiteProtectionUnit -BodyParameter ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -30,7 +30,7 @@ New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob [-ResponseHeadersVa [-SiteIds ] [-SiteWebUrls ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Create @@ -41,7 +41,6 @@ New-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgSolutionBackupRestore [-IfMatch ] [-ResponseHeadersVariable ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..6b562b020333a --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreBrowseSession.md @@ -0,0 +1,441 @@ +--- +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 + +> [!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) + +``` +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 + +## 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 + +- [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 1ea13d01b3ac9..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgSolutionBackupRestoreDriveInclusionRule -DriveProtectionRuleId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgSolutionBackupRestoreDriveInclusionRule -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgSolutionBackupRestoreDriveProtectionUnit -DriveProtectionUnitId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgSolutionBackupRestoreDriveProtectionUnit -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgSolutionBackupRestoreExchangeProtectionPolicy -ExchangeProtectionPolicy [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgSolutionBackupRestoreExchangeProtectionPolicy -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgSolutionBackupRestoreExchangeRestoreSession -ExchangeRestoreSessionId < [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgSolutionBackupRestoreExchangeRestoreSession -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifa [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifa [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAd [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAd [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgSolutionBackupRestoreMailboxInclusionRule -MailboxProtectionRuleId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgSolutionBackupRestoreMailboxInclusionRule -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgSolutionBackupRestoreMailboxProtectionUnit -MailboxProtectionUnitId ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgSolutionBackupRestoreMailboxProtectionUnit -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..b609a4ac74c76 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.md @@ -0,0 +1,442 @@ +--- +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 + +> [!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) + +``` +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 + +## 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 + +- [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 1c94abdd64a8e..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..1974b9c0b5d5b --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -0,0 +1,464 @@ +--- +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 + +> [!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) + +``` +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 + +## 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 + +- [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 db27e5152029d..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgSolutionBackupRestorePoint -RestorePointId [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgSolutionBackupRestorePoint -InputObject [-IfMa [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,6 @@ Remove-MgSolutionBackupRestoreProtectionPolicy -ProtectionPolicyBaseId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -41,7 +40,6 @@ Remove-MgSolutionBackupRestoreProtectionPolicy -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgSolutionBackupRestoreServiceApp -ServiceAppId [-IfMatch ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -38,7 +37,6 @@ Remove-MgSolutionBackupRestoreServiceApp -InputObject [ [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgSolutionBackupRestoreSession -RestoreSessionBaseId [-IfMatch < [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgSolutionBackupRestoreSession -InputObject [-If [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..103c3c9c59711 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -0,0 +1,441 @@ +--- +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 + +> [!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) + +``` +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 + +## 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 + +- [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 bd654fb8afb63..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgSolutionBackupRestoreSharePointProtectionPolicy -SharePointProtectionPo [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgSolutionBackupRestoreSharePointProtectionPolicy -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgSolutionBackupRestoreSharePointRestoreSession -SharePointRestoreSession [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgSolutionBackupRestoreSharePointRestoreSession -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..6579966330949 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Remove-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -0,0 +1,464 @@ +--- +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 + +> [!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) + +``` +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 + +## 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 + +- [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 aafa1a146c572..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdd [-IfMatch ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdd [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgSolutionBackupRestoreSiteInclusionRule -SiteProtectionRuleId [ [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgSolutionBackupRestoreSiteInclusionRule -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Remove-MgSolutionBackupRestoreSiteProtectionUnit -SiteProtectionUnitId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -37,7 +36,6 @@ Remove-MgSolutionBackupRestoreSiteProtectionUnit -InputObject ] [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -28,7 +28,6 @@ Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### DeleteViaIdentity @@ -39,7 +38,6 @@ Remove-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,6 @@ Search-MgSolutionBackupRestorePoint [-ResponseHeadersVariable ] [-RestorePointPreference ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Search @@ -40,7 +39,6 @@ Search-MgSolutionBackupRestorePoint [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -27,7 +27,6 @@ Stop-MgSolutionBackupRestoreProtectionUnitOffboard -ProtectionUnitBaseId ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### CancelViaIdentity @@ -37,7 +36,6 @@ Stop-MgSolutionBackupRestoreProtectionUnitOffboard -InputObject ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -49,7 +49,7 @@ Update-MgSolutionBackupRestore [-ResponseHeadersVariable ] [-SiteProtectionUnitsBulkAdditionJobs ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -59,7 +59,6 @@ Update-MgSolutionBackupRestore -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -139,7 +138,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 @@ -444,7 +443,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 +726,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 @@ -913,11 +912,13 @@ 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 +934,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 +1144,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 +1213,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 +1271,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 +1351,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 +1398,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 +1420,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 +1854,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 +1874,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 +2065,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. @@ -2267,9 +2279,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 +2299,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 +2433,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 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..adcae799ace7e --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreBrowseSession.md @@ -0,0 +1,760 @@ +--- +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 + +> [!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) + +``` +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 + +## 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 + +- [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 150ce58acbe9b..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 @@ -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 --- @@ -30,7 +30,7 @@ Update-MgSolutionBackupRestoreDriveInclusionRule -DriveProtectionRuleId [-LastModifiedBy ] [-LastModifiedDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -40,7 +40,7 @@ Update-MgSolutionBackupRestoreDriveInclusionRule -DriveProtectionRuleId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -53,7 +53,7 @@ Update-MgSolutionBackupRestoreDriveInclusionRule -InputObject ] [-LastModifiedDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -63,7 +63,7 @@ Update-MgSolutionBackupRestoreDriveInclusionRule -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,7 @@ Update-MgSolutionBackupRestoreDriveProtectionUnit -DriveProtectionUnitId ] [-PolicyId ] [-ProtectionSources ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +41,7 @@ Update-MgSolutionBackupRestoreDriveProtectionUnit -DriveProtectionUnitId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +55,7 @@ Update-MgSolutionBackupRestoreDriveProtectionUnit -InputObject ] [-PolicyId ] [-ProtectionSources ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -65,7 +65,7 @@ Update-MgSolutionBackupRestoreDriveProtectionUnit -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,7 @@ Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob [-LastModifiedBy ] [-LastModifiedDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -43,7 +43,6 @@ Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -57,7 +56,7 @@ Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob [-LastModifiedBy ] [-LastModifiedDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -69,7 +68,6 @@ Update-MgSolutionBackupRestoreDriveProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -36,7 +36,7 @@ Update-MgSolutionBackupRestoreExchangeProtectionPolicy -ExchangeProtectionPolicy [-RetentionSettings ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -46,7 +46,7 @@ Update-MgSolutionBackupRestoreExchangeProtectionPolicy -ExchangeProtectionPolicy -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -64,7 +64,7 @@ Update-MgSolutionBackupRestoreExchangeProtectionPolicy -InputObject ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -74,7 +74,7 @@ Update-MgSolutionBackupRestoreExchangeProtectionPolicy -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -35,7 +35,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSession -ExchangeRestoreSessionId < [-RestoreSessionArtifactCount ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -45,7 +45,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSession -ExchangeRestoreSessionId < -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -63,7 +63,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSession -InputObject ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -73,7 +73,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSession -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifa [-RestoredItemCount ] [-SearchResponseId ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -42,7 +42,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifa -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -56,7 +56,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifa [-RestoredItemCount ] [-SearchResponseId ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -67,7 +67,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionGranularMailboxRestoreArtifa -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact.md index 21c49c5227a40..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 @@ -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 --- @@ -31,7 +31,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact [-RestoredItemCount ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -42,7 +42,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +55,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact [-RestoredFolderId ] [-RestoredItemCount ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -66,7 +66,6 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -33,7 +33,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAd [-ProtectionUnitIds ] [-RestorePointPreference ] [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -45,7 +45,6 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAd [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -61,7 +60,7 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAd [-ProtectionUnitIds ] [-RestorePointPreference ] [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -73,7 +72,6 @@ Update-MgSolutionBackupRestoreExchangeRestoreSessionMailboxRestoreArtifactBulkAd [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,6 @@ Update-MgSolutionBackupRestoreMailboxInclusionRule -MailboxProtectionRuleId ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +40,7 @@ Update-MgSolutionBackupRestoreMailboxInclusionRule -MailboxProtectionRuleId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +54,6 @@ Update-MgSolutionBackupRestoreMailboxInclusionRule -InputObject ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +63,7 @@ Update-MgSolutionBackupRestoreMailboxInclusionRule -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,7 @@ Update-MgSolutionBackupRestoreMailboxProtectionUnit -MailboxProtectionUnitId ] [-PolicyId ] [-ProtectionSources ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +41,7 @@ Update-MgSolutionBackupRestoreMailboxProtectionUnit -MailboxProtectionUnitId [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +55,7 @@ Update-MgSolutionBackupRestoreMailboxProtectionUnit -InputObject ] [-PolicyId ] [-ProtectionSources ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -65,7 +65,7 @@ Update-MgSolutionBackupRestoreMailboxProtectionUnit -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,7 @@ Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob [-LastModifiedDateTime ] [-Mailboxes ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -43,7 +43,6 @@ Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -57,7 +56,7 @@ Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob [-LastModifiedDateTime ] [-Mailboxes ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -69,7 +68,6 @@ Update-MgSolutionBackupRestoreMailboxProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..dcb685dda44a8 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessBrowseSession.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/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 + +> [!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) + +``` +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 + +## 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 + +- [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 17244f036dc55..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 @@ -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 --- @@ -37,7 +37,7 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy [-RetentionSettings ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -49,7 +49,6 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -68,7 +67,7 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy [-RetentionSettings ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -80,7 +79,6 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessProtectionPolicy [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -36,7 +36,7 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession [-RestoreSessionArtifactCount ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -48,7 +48,6 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -67,7 +66,7 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession [-RestoreSessionArtifactCount ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -79,7 +78,6 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSession [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES @@ -359,7 +357,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 @@ -907,19 +905,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. CREATEDBY ``: identitySet [(Any) ]: This indicates any property can be added to this object. @@ -1053,19 +1052,20 @@ 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 [BrowseSessionBaseId ]: The unique identifier of browseSessionBase 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..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 @@ -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 --- @@ -31,7 +31,6 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +41,7 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +54,7 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif [-RestoredSiteId ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -66,7 +65,6 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -33,7 +33,7 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif [-ProtectionUnitIds ] [-RestorePointPreference ] [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -45,7 +45,6 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -61,7 +60,7 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif [-RestorePointPreference ] [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -73,7 +72,6 @@ Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionDriveRestoreArtif [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..9d63f2a478330 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreOneDriveForBusinessRestoreSessionGranularDriveRestoreArtifact.md @@ -0,0 +1,842 @@ +--- +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 + +> [!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) + +``` +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 + +## 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 + +- [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 fbe597bdf2364..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 @@ -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 --- @@ -28,7 +28,7 @@ Update-MgSolutionBackupRestorePoint -RestorePointId [-ResponseHeadersVa [-ProtectionDateTime ] [-ProtectionUnit ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -38,7 +38,7 @@ Update-MgSolutionBackupRestorePoint -RestorePointId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -50,7 +50,7 @@ Update-MgSolutionBackupRestorePoint -InputObject [-ProtectionUnit ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -60,7 +60,7 @@ Update-MgSolutionBackupRestorePoint -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreProtectionPolicy.md index 81dc0bbec4d3f..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 @@ -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 --- @@ -32,7 +32,7 @@ Update-MgSolutionBackupRestoreProtectionPolicy -ProtectionPolicyBaseId [-RetentionSettings ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -42,7 +42,7 @@ Update-MgSolutionBackupRestoreProtectionPolicy -ProtectionPolicyBaseId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -57,7 +57,7 @@ Update-MgSolutionBackupRestoreProtectionPolicy -InputObject ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -67,7 +67,7 @@ Update-MgSolutionBackupRestoreProtectionPolicy -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -29,7 +29,7 @@ Update-MgSolutionBackupRestoreServiceApp -ServiceAppId [-ResponseHeader [-LastModifiedDateTime ] [-RegistrationDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -39,7 +39,7 @@ Update-MgSolutionBackupRestoreServiceApp -ServiceAppId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -52,7 +52,6 @@ Update-MgSolutionBackupRestoreServiceApp -InputObject [-RegistrationDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -62,7 +61,7 @@ Update-MgSolutionBackupRestoreServiceApp -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSession.md index 6743893ae32bc..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 @@ -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 --- @@ -32,7 +32,7 @@ Update-MgSolutionBackupRestoreSession -RestoreSessionBaseId [-RestoreSessionArtifactCount ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -42,7 +42,7 @@ Update-MgSolutionBackupRestoreSession -RestoreSessionBaseId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -57,7 +57,7 @@ Update-MgSolutionBackupRestoreSession -InputObject [-RestoreSessionArtifactCount ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -67,7 +67,7 @@ Update-MgSolutionBackupRestoreSession -InputObject -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES diff --git a/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md new file mode 100644 index 0000000000000..c66be2d6d8f13 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointBrowseSession.md @@ -0,0 +1,788 @@ +--- +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 + +> [!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) + +``` +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 + +## 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 + +- [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 a957e3c8774c4..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 @@ -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 --- @@ -36,7 +36,7 @@ Update-MgSolutionBackupRestoreSharePointProtectionPolicy -SharePointProtectionPo [-SiteProtectionUnitsBulkAdditionJobs ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -46,7 +46,7 @@ Update-MgSolutionBackupRestoreSharePointProtectionPolicy -SharePointProtectionPo -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -64,7 +64,7 @@ Update-MgSolutionBackupRestoreSharePointProtectionPolicy -InputObject ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -74,7 +74,7 @@ Update-MgSolutionBackupRestoreSharePointProtectionPolicy -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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,7 +13,7 @@ title: Update-MgSolutionBackupRestoreSharePointRestoreSession ## SYNOPSIS -Update the navigation property sharePointRestoreSessions in solutions +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) @@ -35,7 +35,7 @@ Update-MgSolutionBackupRestoreSharePointRestoreSession -SharePointRestoreSession [-SiteRestoreArtifactsBulkAdditionRequests ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -45,7 +45,7 @@ Update-MgSolutionBackupRestoreSharePointRestoreSession -SharePointRestoreSession -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -63,7 +63,7 @@ Update-MgSolutionBackupRestoreSharePointRestoreSession -InputObject ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -73,7 +73,7 @@ Update-MgSolutionBackupRestoreSharePointRestoreSession -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES @@ -83,7 +83,7 @@ This cmdlet has the following aliases, ## DESCRIPTION -Update the navigation property sharePointRestoreSessions in solutions +Update the properties of a sharePointRestoreSession object. ## PARAMETERS @@ -297,7 +297,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 @@ -844,19 +844,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 @@ -942,19 +943,20 @@ 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 [BrowseSessionBaseId ]: The unique identifier of browseSessionBase @@ -1118,6 +1120,7 @@ Read-only. ## RELATED LINKS - [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 new file mode 100644 index 0000000000000..666040693b3c6 --- /dev/null +++ b/microsoftgraph/graph-powershell-1.0/Microsoft.Graph.BackupRestore/Update-MgSolutionBackupRestoreSharePointRestoreSessionGranularSiteRestoreArtifact.md @@ -0,0 +1,842 @@ +--- +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 + +> [!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) + +``` +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 + +## 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 + +- [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 7e3890ed4673f..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 @@ -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 --- @@ -31,7 +31,6 @@ Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -42,7 +41,7 @@ Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +54,7 @@ Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact [-RestoredSiteId ] [-StartDateTime ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -66,7 +65,6 @@ Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifact [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -34,7 +34,6 @@ Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdd [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -46,7 +45,6 @@ Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdd [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -62,7 +60,6 @@ Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdd [-SiteWebUrls ] [-Status ] [-Tags ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -74,7 +71,6 @@ Update-MgSolutionBackupRestoreSharePointRestoreSessionSiteRestoreArtifactBulkAdd [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,6 @@ Update-MgSolutionBackupRestoreSiteInclusionRule -SiteProtectionRuleId [-SiteExpression ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### Update @@ -41,7 +40,7 @@ Update-MgSolutionBackupRestoreSiteInclusionRule -SiteProtectionRuleId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +54,6 @@ Update-MgSolutionBackupRestoreSiteInclusionRule -InputObject ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentity @@ -65,7 +63,7 @@ Update-MgSolutionBackupRestoreSiteInclusionRule -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,7 @@ Update-MgSolutionBackupRestoreSiteProtectionUnit -SiteProtectionUnitId [-ProtectionSources ] [-SiteId ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -41,7 +41,7 @@ Update-MgSolutionBackupRestoreSiteProtectionUnit -SiteProtectionUnitId -BodyParameter [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentityExpanded @@ -55,7 +55,7 @@ Update-MgSolutionBackupRestoreSiteProtectionUnit -InputObject ] [-SiteId ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -65,7 +65,7 @@ Update-MgSolutionBackupRestoreSiteProtectionUnit -InputObject [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ## ALIASES 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..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 @@ -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 --- @@ -31,7 +31,7 @@ Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob [-SiteIds ] [-SiteWebUrls ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### Update @@ -43,7 +43,6 @@ Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ### UpdateViaIdentityExpanded @@ -57,7 +56,7 @@ Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob [-SiteIds ] [-SiteWebUrls ] [-Status ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] - [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] + [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] ``` ### UpdateViaIdentity @@ -69,7 +68,6 @@ Update-MgSolutionBackupRestoreSiteProtectionUnitBulkAdditionJob [-ResponseHeadersVariable ] [-Break] [-Headers ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] - [] ``` ## ALIASES diff --git a/scripts/CorrectRelatedLinks-AllFiles.ps1 b/scripts/CorrectRelatedLinks-AllFiles.ps1 index 3f6a71383b9e6..be414538528a7 100644 --- a/scripts/CorrectRelatedLinks-AllFiles.ps1 +++ b/scripts/CorrectRelatedLinks-AllFiles.ps1 @@ -19,7 +19,11 @@ param( [Parameter(Mandatory = $false)] [ValidateSet("v1.0", "beta", "both")] - [string]$GraphProfile = "both" + [Alias("GraphProfileFilter")] + [string]$GraphProfile = "both", + + [Parameter(Mandatory = $false)] + [string]$ModuleFilter = "" ) function Get-GraphMapping { @@ -217,6 +221,10 @@ if ($ModulesToGenerate.Count -eq 0) { } } +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} + # Main execution Write-Host "=== Related Links Correction Script ===" -ForegroundColor Blue Write-Host "Working directory: $WorkLoadDocsPath" -ForegroundColor Blue diff --git a/scripts/EscapeDisallowedHtmlTags.ps1 b/scripts/EscapeDisallowedHtmlTags.ps1 index 7f2d4079ff9da..0039a05b33500 100644 --- a/scripts/EscapeDisallowedHtmlTags.ps1 +++ b/scripts/EscapeDisallowedHtmlTags.ps1 @@ -2,7 +2,10 @@ # Licensed under the MIT License. Param( $ModulesToGenerate = @(), - [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc") + [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -20,13 +23,19 @@ function EscapeDisallowedHtmlTags { $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $graphProfile -ne $GraphProfileFilter) { return } Get-FilesByProfile -GraphProfile $graphProfile -GraphProfilePath $GraphMapping[$graphProfile] -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } - git config --global user.email "timwamalwa@gmail.com" - git config --global user.name "Timothy Wamalwa" + git config --global user.email "GraphTooling@service.microsoft.com" + git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Escaped disallowed html tags" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Escaped disallowed html tags" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FilesByProfile { Param( @@ -322,5 +331,8 @@ function CleanupFile { } Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} EscapeDisallowedHtmlTags -ModulesToGenerate $ModulesToGenerate Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file diff --git a/scripts/GenerateAliasedDocs.ps1 b/scripts/GenerateAliasedDocs.ps1 index 97eba9685354d..c7ba9bec1d19c 100644 --- a/scripts/GenerateAliasedDocs.ps1 +++ b/scripts/GenerateAliasedDocs.ps1 @@ -6,12 +6,18 @@ See related PR for more information. #> +Param( + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" +) + function Start-GenerateAliasedDocs { $BreakingChangeReportV1Report = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/docs/PowerShellBreakingChanges-V1.0.csv") $BreakingChangeReportBetaReport = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/docs/PowerShellBreakingChanges-beta.csv") $Reports = @() - $Reports += $BreakingChangeReportV1Report - $Reports += $BreakingChangeReportBetaReport + if ($GraphProfileFilter -ne "beta") { $Reports += $BreakingChangeReportV1Report } + if ($GraphProfileFilter -ne "v1.0") { $Reports += $BreakingChangeReportBetaReport } foreach ($BreakingChangeReport in $Reports) { Import-Csv $BreakingChangeReport | ForEach-Object { $Command = $_."NewCmdlet" @@ -39,6 +45,7 @@ function Copy-Files { if($CmdDetails){ $Module = $CmdDetails.Module $Module = $Module.Replace("Beta.", "") + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $Module -ne $ModuleFilter) { return } $Module = "$ModulePrefix.$Module" $NewDoc = (Join-Path $PSScriptRoot "../microsoftgraph" $GraphProfilePath $Module "$Command.md") if(Test-Path $NewDoc) { diff --git a/scripts/GenerateMarkDown.ps1 b/scripts/GenerateMarkDown.ps1 index 52498f065e01d..ed6c85dcdb009 100644 --- a/scripts/GenerateMarkDown.ps1 +++ b/scripts/GenerateMarkDown.ps1 @@ -5,7 +5,16 @@ Param( $ModulesToGenerate = @(), [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config\ModulesMapping.jsonc"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $CmdletMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json") + [string] $CmdletMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json"), + # Restrict generation to a single SDK profile ("v1.0" or "beta"); "both" keeps the + # original full-run behaviour. + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + # Restrict generation to a single module (e.g. "Applications" or "Authentication"). Empty + # means all modules. When set, the run is "scoped": the module's folder is completely + # cleared and regenerated, and an import failure aborts THIS run (fail-safe, no deletion) + # instead of silently skipping. + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -13,36 +22,6 @@ function Get-GraphMapping { $graphMapping.Add("beta", "graph-powershell-beta") return $graphMapping } - -function Get-NormalizedContent { - param ( - [ValidateNotNullOrEmpty()] - [string] $FilePath - ) - $content = Get-Content $FilePath -Raw - # Normalize line endings to LF and trim trailing whitespace - $content = $content -replace "`r`n", "`n" - $content = $content.TrimEnd() - # Strip ms.date line so date-only changes are ignored during comparison - $content = $content -replace '(?m)^ms\.date: .+$', '' - return $content -} - -function Get-DeterministicGuid { - param ( - [ValidateNotNullOrEmpty()] - [string] $InputString - ) - $bytes = [System.Text.Encoding]::UTF8.GetBytes($InputString) - $sha256 = [System.Security.Cryptography.SHA256]::Create() - try { - $hash = $sha256.ComputeHash($bytes) - return [guid]::new([byte[]]$hash[0..15]).ToString() - } finally { - $sha256.Dispose() - } -} - function Set-Help { param ( [ValidateNotNullOrEmpty()] @@ -57,7 +36,7 @@ function Set-Help { Command = (Get-Command $Command) OutputFolder = $ModuleDocsPath Force = $true - Encoding = [System.Text.Encoding]::UTF8 + Encoding = [System.Text.UTF8Encoding]::new($false) } if ($Module -eq "Microsoft.Graph.Authentication") { @@ -65,7 +44,7 @@ function Set-Help { Module = (Get-Module $Module) OutputFolder = $ModuleDocsPath WithModulePage = $true - Encoding = [System.Text.Encoding]::UTF8 + Encoding = [System.Text.UTF8Encoding]::new($false) } Import-Module $Module -Force -Global } @@ -81,55 +60,55 @@ function Start-GraphHelp { Param( $ModulesToGenerate = @() ) - - #Generate for auth module first + $ModulePrefix = "Microsoft.Graph" $AuthPath = "$ModulePrefix.Authentication" $AuthDestination = Join-Path $WorkLoadDocsPath "graph-powershell-1.0" $AuthPath - - Import-Module Microsoft.Graph.Authentication -Global - $GraphMapping = Get-GraphMapping - $TempAuthDir = Join-Path ([System.IO.Path]::GetTempPath()) "GraphDocsTempAuth_$([guid]::NewGuid().ToString('N'))" - New-Item -Path $TempAuthDir -ItemType Directory -Force | Out-Null - $GraphMapping.Keys | ForEach-Object { - $graphProfile = $_ - $profilePath = "graph-powershell-1.0" - if ($graphProfile -eq "beta") { - $profilePath = "graph-powershell-beta" - } - # Generate all auth module docs to temp directory using module-level generation - Set-Help -ModuleDocsPath $TempAuthDir -Command "Connect-MgGraph" -Module "Microsoft.Graph.Authentication" + # Determine which profiles this run covers. + $GraphMapping = Get-GraphMapping + $profilesToProcess = @($GraphMapping.Keys) + if ($GraphProfileFilter -ne "both") { + $profilesToProcess = @($GraphProfileFilter) + } - # Compare and copy all generated auth files - $TempAuthModuleDir = Join-Path $TempAuthDir $AuthPath - if (Test-Path $TempAuthModuleDir) { - if (-not (Test-Path $AuthDestination)) { - New-Item -Path $AuthDestination -ItemType Directory -Force | Out-Null - } - Get-ChildItem -Path $TempAuthModuleDir -Filter "*.md" -File | ForEach-Object { - $tempFile = $_.FullName - $existingFile = Join-Path $AuthDestination $_.Name - if (Test-Path $existingFile) { - $existingContent = Get-NormalizedContent -FilePath $existingFile - $newContent = Get-NormalizedContent -FilePath $tempFile - if ($existingContent -ne $newContent) { - Copy-Item -Path $tempFile -Destination $existingFile -Force - Write-Host "Updated auth doc: $($_.BaseName)" - } - } else { - Copy-Item -Path $tempFile -Destination $existingFile -Force - Write-Host "Added auth doc: $($_.BaseName)" - } + # Authentication docs live under graph-powershell-1.0 and are only generated on a full run + # or when Authentication is the explicitly targeted module. + $generateAuth = ([string]::IsNullOrWhiteSpace($ModuleFilter) -or $ModuleFilter -eq "Authentication") + if ($generateAuth -and ($profilesToProcess -contains "v1.0")) { + # Guard against catastrophic deletions: never remove existing docs unless the module + # is available to regenerate them. Authentication is required for every run, so abort + # if it failed to install rather than wiping committed documentation. + if (-not (Get-Module -Name Microsoft.Graph.Authentication -ListAvailable -ErrorAction SilentlyContinue)) { + throw "Microsoft.Graph.Authentication module is not available. Aborting generation to avoid deleting existing documentation." + } + Import-Module Microsoft.Graph.Authentication -Force -Global -ErrorAction Stop + Get-ChildItem -Path $AuthDestination * -File -Recurse | foreach { $_.Delete() } + $AuthenticationDocsPath = Join-Path $PSScriptRoot "..\microsoftgraph\graph-powershell-1.0" + Set-Help -ModuleDocsPath $AuthenticationDocsPath -Command "Connect-MgGraph" -Module "Microsoft.Graph.Authentication" + } + + # Workload modules. Skip entirely when Authentication is the explicit single target. + if ($ModuleFilter -ne "Authentication") { + $profilesToProcess | ForEach-Object { + $graphProfile = $_ + $profilePath = "graph-powershell-1.0" + if ($graphProfile -eq "beta") { + $profilePath = "graph-powershell-beta" } + Get-FolderByProfile -GraphProfile $graphProfile -GraphProfilePath $profilePath -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } - Get-FolderByProfile -GraphProfile $graphProfile -GraphProfilePath $profilePath -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } - Remove-Item -Path $TempAuthDir -Recurse -Force -ErrorAction SilentlyContinue + git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Updated markdown help" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Updated markdown help" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FolderByProfile { @@ -145,10 +124,14 @@ function Get-FolderByProfile { ) $CommandMetadataContent = Get-Content $CmdletMetadataPath | ConvertFrom-Json - # Create a single temp directory for this profile's generation - $TempOutputDir = Join-Path ([System.IO.Path]::GetTempPath()) "GraphDocsTemp_$([guid]::NewGuid().ToString('N'))" - New-Item -Path $TempOutputDir -ItemType Directory -Force | Out-Null - + # In scoped (single-module) runs, restrict to the requested module and enable + # complete-delete + regenerate for it (safe because the module is verified to import + # below before anything is removed). + $Scoped = -not [string]::IsNullOrWhiteSpace($ModuleFilter) + if ($Scoped) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) + } + $ModulesToGenerate | ForEach-Object { $ModuleName = $_ Write-Host $ModuleName @@ -160,107 +143,102 @@ function Get-FolderByProfile { } $Destination = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path $DocsDestination = Join-Path $WorkLoadDocsPath $GraphProfilePath + + # Guard against catastrophic deletions. A module can be installed yet fail to + # import (e.g. an Authentication version conflict), and ListAvailable alone does + # not catch that. Verify the module actually imports AND exposes commands; if it + # does not, skip it so its committed docs are preserved instead of being wiped + # and never regenerated (which is what produced the mass-deletion refresh PRs). + $ModuleUsable = $false + if (Get-Module -Name $Path -ListAvailable -ErrorAction SilentlyContinue) { + try { + Import-Module $Path -Force -Global -ErrorAction Stop + if (Get-Command -Module $Path -ErrorAction SilentlyContinue) { + $ModuleUsable = $true + } + } catch { + Write-Warning "Module $Path failed to import: $($_.Exception.Message)" + } + } + if (-not $ModuleUsable) { + if ($Scoped) { + # Isolated single-module run: fail fast WITHOUT deleting anything so the + # module's committed docs are preserved. The pipeline job contains this + # failure (continueOnError) so it never fails the whole run or other modules. + throw "Module $Path is not usable in isolated generation; aborting this module without deleting its documentation." + } + Write-Warning "Module $Path is not usable; skipping to preserve existing documentation." + return + } + if (-not(Test-Path $Destination)) { New-Item -Path $Destination -ItemType Directory } + elseif ($Scoped) { + # Complete deletion + regeneration for this single module. Safe here because the + # module imported successfully above, so regeneration repopulates the folder. + Get-ChildItem -Path $Destination -Filter "*.md" -File | ForEach-Object { + Remove-Item $_.FullName -Force + } + } + # NOTE: docs are intentionally NOT bulk-deleted here. Each doc is overwritten in + # place as it is regenerated, and only genuine orphans (commands no longer in the + # metadata) are removed afterwards. This guarantees that a transient generation + # failure can never wipe a module's documentation. $CmdletCount = 0 $MetadataCommands = @{} - - # Generate table of contents for each module using a deterministic GUID + # Generate table of contents for each module $TocFileName = "$Path.md" - $ModuleGuid = Get-DeterministicGuid -InputString $Path + $ModuleGuid = [guid]::NewGuid().ToString() $LinkProfile = $GraphProfile.Replace("v", "") $LinkModuleName = $Path.ToLower() $HelpVersion = "1.0.0.0" $HelpLocale = "en-US" - $DownloadLink = "https://learn.microsoft.com/en-us/powershell/module/$LinkModuleName/?view=graph-powershell-$LinkProfile" - - # Build TOC content in memory to compare before writing - $TocContent = @() - $TocContent += "---" - $TocContent += "Module Name: $Path" - $TocContent += "Module Guid: $ModuleGuid" - $TocContent += "Download Help Link: $DownloadLink" - $TocContent += "Help Version: $HelpVersion" - $TocContent += "Locale: $HelpLocale" - $TocContent += "---" - $TocContent += "" - $TocContent += "# $Path Module" - $TocContent += "## Description" - $TocContent += "Microsoft Graph PowerShell Cmdlets" - $TocContent += "" - $TocContent += "## $Path Cmdlets" - + $DownloadLink = "https://learn.microsoft.com/en-us/powershell/module/$LinkModuleName/?view=graph-powershell-$LinkProfile" + New-Item -Path $Destination -Name $TocFileName -ItemType File -Force + Add-Content -Path $Destination\$TocFileName -Value "---" + Add-Content -Path $Destination\$TocFileName -Value "Module Name: $Path" + Add-Content -Path $Destination\$TocFileName -Value "Module Guid: $ModuleGuid" + Add-Content -Path $Destination\$TocFileName -Value "Download Help Link: $DownloadLink" + Add-Content -Path $Destination\$TocFileName -Value "Help Version: $HelpVersion" + Add-Content -Path $Destination\$TocFileName -Value "Locale: $HelpLocale" + Add-Content -Path $Destination\$TocFileName -Value "---" + Add-Content -Path $Destination\$TocFileName -Value "" + Add-Content -Path $Destination\$TocFileName -Value "# $Path Module" + Add-Content -Path $Destination\$TocFileName -Value "## Description" + Add-Content -Path $Destination\$TocFileName -Value "Microsoft Graph PowerShell Cmdlets" + Add-Content -Path $Destination\$TocFileName -Value "" + Add-Content -Path $Destination\$TocFileName -Value "## $Path Cmdlets" $CommandMetadataContent | Where-Object { $_.Module -eq $ModName -and $_.ApiVersion -eq $GraphProfile } | ForEach-Object { $Command = $_.Command $MetadataCommands[$Command] = $true - $CmdletDocsPath = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path "$Command.md" - - # Generate to temp directory and compare with existing if (Get-Command -Name $Command -ErrorAction SilentlyContinue) { - Set-Help -ModuleDocsPath $TempOutputDir -Command $Command -Module $Path - $TempFilePath = Join-Path $TempOutputDir $Path "$Command.md" - if (Test-Path $TempFilePath) { - if (Test-Path $CmdletDocsPath) { - $existingContent = Get-NormalizedContent -FilePath $CmdletDocsPath - $newContent = Get-NormalizedContent -FilePath $TempFilePath - if ($existingContent -ne $newContent) { - Copy-Item -Path $TempFilePath -Destination $CmdletDocsPath -Force - Write-Host "Updated: $Command" - } - } else { - Copy-Item -Path $TempFilePath -Destination $CmdletDocsPath -Force - Write-Host "Added: $Command" - } - } - } elseif (-not (Test-Path $CmdletDocsPath)) { + Set-Help -ModuleDocsPath $DocsDestination -Command $Command -Module $Path + } else { Write-Warning "Cmdlet $Command is not available." } - - $TocContent += "### [$Command]($Command.md)" - $TocContent += "" + Add-Content -Path $Destination\$TocFileName -Value "### [$Command]($Command.md)" + Add-Content -Path $Destination\$TocFileName -Value "" $CmdletCount++ } - if ($CmdletCount -eq 0) { - Remove-Item -LiteralPath $Destination -Force -Recurse - } else { - # Only write TOC if content has changed - $TocFilePath = Join-Path $Destination $TocFileName - $newTocText = ($TocContent -join "`r`n") + "`r`n" - if (Test-Path $TocFilePath) { - $existingTocText = Get-Content $TocFilePath -Raw - # Normalize both to LF for comparison - $existingNormalized = $existingTocText -replace "`r`n", "`n" - $newNormalized = $newTocText -replace "`r`n", "`n" - if ($existingNormalized.TrimEnd() -ne $newNormalized.TrimEnd()) { - $newTocText | Out-File $TocFilePath -Encoding UTF8 -NoNewline - Write-Host "Updated TOC: $TocFileName" - } - } else { - $newTocText | Out-File $TocFilePath -Encoding UTF8 -NoNewline - Write-Host "Added TOC: $TocFileName" - } - - # Remove orphaned docs — files for commands no longer in metadata - Get-ChildItem -Path $Destination -Filter "*.md" -File | Where-Object { - $cmdName = $_.BaseName - -not $MetadataCommands.ContainsKey($cmdName) -and $_.Name -ne $TocFileName - } | ForEach-Object { - Write-Host "Removing orphaned doc: $($_.Name)" - Remove-Item $_.FullName -Force - } + # Remove only genuine orphans: docs whose command is no longer in the metadata. + # Docs for commands still in metadata are preserved even if this run failed to + # regenerate them, so a bad run cannot delete valid documentation. + Get-ChildItem -Path $Destination -Filter "*.md" -File | Where-Object { + $_.Name -ne $TocFileName -and -not $MetadataCommands.ContainsKey($_.BaseName) + } | ForEach-Object { + Write-Host "Removing orphaned doc: $($_.Name)" + Remove-Item $_.FullName -Force } - # Clean up temp module folder for this iteration - $TempModuleDir = Join-Path $TempOutputDir $Path - if (Test-Path $TempModuleDir) { - Remove-Item -Path $TempModuleDir -Recurse -Force -ErrorAction SilentlyContinue + if($CmdletCount -eq 0){ + Remove-Item -LiteralPath $Destination -Force -Recurse } - } - Remove-Item -Path $TempOutputDir -Recurse -Force -ErrorAction SilentlyContinue + } + } # Install PlatyPS Install-Module -Name Microsoft.PowerShell.PlatyPS -Force @@ -280,4 +258,8 @@ if ($ModulesToGenerate.Count -eq 0) { } Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" Start-GraphHelp -ModulesToGenerate $ModulesToGenerate +# Signal successful generation so downstream pipeline steps (post-processing, push, PR) only +# run when this module actually generated. On an import failure the script throws before this +# line, the variable is never set, and the isolated stage opens no PR and deletes nothing. +Write-Host "##vso[task.setvariable variable=ModuleGenerated]true" Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file diff --git a/scripts/GeneratePermissionsTable.ps1 b/scripts/GeneratePermissionsTable.ps1 index aeca973f7f228..d854d62458c62 100644 --- a/scripts/GeneratePermissionsTable.ps1 +++ b/scripts/GeneratePermissionsTable.ps1 @@ -1,6 +1,9 @@ param( [string]$MgCommandMetadatJsonFile = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json"), - [string[]]$CmdList = @() + [string[]]$CmdList = @(), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Start-Generator { @@ -11,6 +14,9 @@ function Start-Generator { $CommandName = $_.Command; $ApiVersion = $_.ApiVersion $Module = $_.Module; + if ($GraphProfileFilter -ne "both" -and $ApiVersion -ne $GraphProfileFilter) { return } + $normalizedModule = $Module -replace "^Beta\.", "" + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $normalizedModule -ne $ModuleFilter) { return } #Array for DelegatedWork Permissions $DelegatedWorkPermissions = @(); #Array for Application Permissions @@ -70,7 +76,12 @@ function Start-Generator { git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Inserted permissions Table" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Inserted permissions Table" + } else { + $global:LASTEXITCODE = 0 + } } catch { Write-Host "Error in $_"; @@ -136,7 +147,12 @@ function New-ReferenceTable { "@; - if ((Get-Content -Raw -Path $File) -match '(## DESCRIPTION)[\s\S]*## EXAMPLES') { + if ((Get-Content -Raw -Path $File) -match '\*\*Permissions\*\*') { + # A permissions table has already been inserted on a previous run. + # Skip to avoid prepending a duplicate '**Permissions**' block. + Write-Host "Skipping $CommandName as it already has a permissions table"; + } + elseif ((Get-Content -Raw -Path $File) -match '(## DESCRIPTION)[\s\S]*## EXAMPLES') { $Link = "**Permissions**`r`n`n$markdownTable`r`n`n## EXAMPLES" (Get-Content $File) | Foreach-Object { $_ -replace '## EXAMPLES', $Link } | diff --git a/scripts/MsSubserviceUpdate.ps1 b/scripts/MsSubserviceUpdate.ps1 index d9bbd826afe67..54ce3c003d8ca 100644 --- a/scripts/MsSubserviceUpdate.ps1 +++ b/scripts/MsSubserviceUpdate.ps1 @@ -5,7 +5,10 @@ Param( [string] $SDKDocsPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src"), [string] $SDKOpenApiPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $MissingMsSubserviceHeaderPath = (Join-Path $PSScriptRoot "../missingexternaldocsurl") + [string] $MissingMsSubserviceHeaderPath = (Join-Path $PSScriptRoot "../missingexternaldocsurl"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Start-Generator { if (Test-Path $CommandMetadataPath) { @@ -22,6 +25,8 @@ function Start-Generator { $ModulePrefix = "Microsoft.Graph.Beta" $ModuleName = $ModuleName.Replace("Beta.", "") } + if ($GraphProfileFilter -ne "both" -and $GraphProfile -ne $GraphProfileFilter) { return } + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $ModuleName -ne $ModuleFilter) { return } $Path = "$ModulePrefix.$ModuleName" $DestinationFile = Join-Path $WorkLoadDocsPath $GraphProfilePath $Path "$Command.md" try { diff --git a/scripts/RemoveBoilerPlateCode.ps1 b/scripts/RemoveBoilerPlateCode.ps1 index 246e79ba3febe..8158654b106a1 100644 --- a/scripts/RemoveBoilerPlateCode.ps1 +++ b/scripts/RemoveBoilerPlateCode.ps1 @@ -4,7 +4,10 @@ Param( $ModulesToGenerate = @(), [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $AuthLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Authentication") + [string] $AuthLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph/graph-powershell-1.0/Microsoft.Graph.Authentication"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -19,19 +22,22 @@ function Start-Repair { $ModulesToGenerate = @() ) - #Cleanup Authentication Module first - $files = Get-ChildItem -Path $AuthLoadDocsPath -Filter *.md -Recurse - foreach ($file in $files) { - $content = Get-Content -Path $file.FullName - # Remove lines that contain '{{ Fill in the Description }}' or '### This' or '### *' or '### have' or '### certain' or '### the' - $cleanedContent = $content | Where-Object { $_ -notmatch '^\s*{{ Fill in the Description }}|^\s*### This|^\s*### \*|^\s*### have|^\s*### certain|^\s*### the' } - # Write the cleaned content back to the file - $cleanedContent | Set-Content -Path $file.FullName + #Cleanup Authentication Module first (only on a full run or the Authentication stage). + if ([string]::IsNullOrWhiteSpace($ModuleFilter) -or $ModuleFilter -eq "Authentication") { + $files = Get-ChildItem -Path $AuthLoadDocsPath -Filter *.md -Recurse + foreach ($file in $files) { + $content = Get-Content -Path $file.FullName + # Remove lines that contain '{{ Fill in the Description }}' or '### This' or '### *' or '### have' or '### certain' or '### the' + $cleanedContent = $content | Where-Object { $_ -notmatch '^\s*{{ Fill in the Description }}|^\s*### This|^\s*### \*|^\s*### have|^\s*### certain|^\s*### the' } + # Write the cleaned content back to the file + $cleanedContent | Set-Content -Path $file.FullName + } } $ModulePrefix = "Microsoft.Graph" $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $graphProfile -ne $GraphProfileFilter) { return } $profilePath = "graph-powershell-1.0" if ($graphProfile -eq "beta") { $profilePath = "graph-powershell-beta" @@ -41,7 +47,12 @@ function Start-Repair { git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Remove boiler plate code injected by Autorest" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Remove boiler plate code injected by Autorest" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FilesByProfile { Param( @@ -118,5 +129,8 @@ if ($ModulesToGenerate.Count -eq 0) { } Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} Start-Repair -ModulesToGenerate $ModulesToGenerate Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file diff --git a/scripts/RemoveInvalidFullStops.ps1 b/scripts/RemoveInvalidFullStops.ps1 index 37be47e7c73df..21cfad73afe51 100644 --- a/scripts/RemoveInvalidFullStops.ps1 +++ b/scripts/RemoveInvalidFullStops.ps1 @@ -2,7 +2,10 @@ # Licensed under the MIT License. Param( $ModulesToGenerate = @(), - [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc") + [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -20,13 +23,19 @@ function Remove-InvalidFullStops { $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $graphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $graphProfile -ne $GraphProfileFilter) { return } Get-FilesByProfile -GraphProfile $graphProfile -GraphProfilePath $GraphMapping[$graphProfile] -ModulePrefix $ModulePrefix -ModulesToGenerate $ModulesToGenerate } - git config --global user.email "timwamalwa@gmail.com" - git config --global user.name "Timothy Wamalwa" + git config --global user.email "GraphTooling@service.microsoft.com" + git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Removed invalid full stops from the beginning of lines" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Removed invalid full stops from the beginning of lines" + } else { + $global:LASTEXITCODE = 0 + } } function Get-FilesByProfile { Param( @@ -88,6 +97,9 @@ if ($ModulesToGenerate.Count -eq 0) { [HashTable] $ModuleMapping = Get-Content $ModuleMappingConfigPath | ConvertFrom-Json -AsHashTable $ModulesToGenerate = $ModuleMapping.Keys } +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} Remove-InvalidFullStops -ModulesToGenerate $ModulesToGenerate diff --git a/scripts/RepairExamplesDescriptionsAndTitle.ps1 b/scripts/RepairExamplesDescriptionsAndTitle.ps1 index c8e3c74074799..e1fd1d5a8f172 100644 --- a/scripts/RepairExamplesDescriptionsAndTitle.ps1 +++ b/scripts/RepairExamplesDescriptionsAndTitle.ps1 @@ -4,7 +4,10 @@ Param( $ModulesToGenerate = @(), [string] $SDKDocsPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src"), [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), - [string] $CommandMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json") + [string] $CommandMetadataPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src/Authentication/Authentication/custom/common/MgCommandMetadata.json"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Start-Copy { @@ -22,6 +25,8 @@ function Start-Copy { $ModulePrefix = "Microsoft.Graph.Beta" $ModuleName = $ModuleName.Replace("Beta.", "") } + if ($GraphProfileFilter -ne "both" -and $GraphProfile -ne $GraphProfileFilter) { return } + if (-not [string]::IsNullOrWhiteSpace($ModuleFilter) -and $ModuleName -ne $ModuleFilter) { return } $DocPath = Join-Path $SDKDocsPath $ModuleName $GraphProfile "examples" "$Command.md" try { @@ -38,7 +43,12 @@ function Start-Copy { git config --global user.email "GraphTooling@service.microsoft.com" git config --global user.name "Microsoft Graph DevX Tooling" git add . - git commit -m "Repaired examples and descriptions" + $pending = git status --porcelain + if (-not [string]::IsNullOrWhiteSpace($pending)) { + git commit -m "Repaired examples and descriptions" + } else { + $global:LASTEXITCODE = 0 + } } diff --git a/scripts/UpdateLinks.ps1 b/scripts/UpdateLinks.ps1 index f7edf3e93bcd6..1ba011281aa6a 100644 --- a/scripts/UpdateLinks.ps1 +++ b/scripts/UpdateLinks.ps1 @@ -4,7 +4,10 @@ Param( $ModulesToGenerate = @(), [string] $ModuleMappingConfigPath = (Join-Path $PSScriptRoot "../microsoftgraph/config/ModulesMapping.jsonc"), [string] $SDKDocsPath = (Join-Path $PSScriptRoot "../msgraph-sdk-powershell/src"), - [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph") + [string] $WorkLoadDocsPath = (Join-Path $PSScriptRoot "../microsoftgraph"), + [ValidateSet("both", "v1.0", "beta")] + [string] $GraphProfileFilter = "both", + [string] $ModuleFilter = "" ) function Get-GraphMapping { $graphMapping = @{} @@ -22,6 +25,7 @@ function Start-Update { $GraphMapping = Get-GraphMapping $GraphMapping.Keys | ForEach-Object { $GraphProfile = $_ + if ($GraphProfileFilter -ne "both" -and $GraphProfile -ne $GraphProfileFilter) { return } $profilePath = "graph-powershell-1.0" if ($GraphProfile -eq "beta") { $ProfilePath = "graph-powershell-beta" @@ -175,7 +179,11 @@ function Add-Link { $Folder = $View.Split("=")[1] $ConfirmFile = Join-Path $WorkLoadDocsPath "$Folder" "$ModuleName" "$CommandRename.md" $ConfirmCommandAvailability = Find-MgGraphCommand -Command $CommandRename - if ($ConfirmCommandAvailability -and (Test-Path $ConfirmFile)) { + # Only insert the note if it isn't already present, otherwise every run + # prepends another copy of the same '[!NOTE]' block before '## SYNTAX'. + $NoteMarker = "$LinkTitle [$CommandRename]($BaseUrl/$FullModuleName$View)" + $AlreadyLinked = (Get-Content -Raw -Path $File) -match [regex]::Escape($NoteMarker) + if ($ConfirmCommandAvailability -and (Test-Path $ConfirmFile) -and -not $AlreadyLinked) { (Get-Content $File) | Foreach-Object { $_ -replace '## SYNTAX', $Link } | Out-File $File @@ -201,5 +209,8 @@ if ($ModulesToGenerate.Count -eq 0) { Write-Host -ForegroundColor Green "-------------finished checking out to today's branch-------------" +if (-not [string]::IsNullOrWhiteSpace($ModuleFilter)) { + $ModulesToGenerate = @($ModulesToGenerate | Where-Object { $_ -eq $ModuleFilter }) +} Start-Update -ModulesToGenerate $ModulesToGenerate Write-Host -ForegroundColor Green "-------------Done-------------" \ No newline at end of file